diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index a3d27ad61..000000000 --- a/.eslintrc.js +++ /dev/null @@ -1,10 +0,0 @@ -// This configuration only applies to the package manager root. -/** @type {import("eslint").Linter.Config} */ -module.exports = { - ignorePatterns: ["apps/**", "packages/**"], - extends: ["@scdp/eslint-config/library.js"], - parser: "@typescript-eslint/parser", - parserOptions: { - project: true, - }, -}; diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 000000000..fe6ad56e2 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,24 @@ +{ + "extends": ["next", "prettier", "next/core-web-vitals", "eslint:recommended", "plugin:@next/next/recommended"], + "globals": { + "React": "readonly", + "JSX": true + }, + "env": { + "node": true, + "browser": true + }, + "plugins": ["only-warn", "jest", "react"], + "rules": { + "react-hooks/rules-of-hooks": "off", + "react/prop-types": "off", + "no-unused-vars": "off" + //"import/no-unused-modules": [1, { "unusedExports": true }] + }, + "settings": {}, + "overrides": [ + { + "files": ["*.stories.@(ts|tsx|js|jsx|mjs|cjs)"] + } + ] +} diff --git a/.github/workflows/check-devportal-links.yml b/.github/workflows/check-devportal-links.yml index 49ff778b3..c8d764605 100644 --- a/.github/workflows/check-devportal-links.yml +++ b/.github/workflows/check-devportal-links.yml @@ -1,21 +1,20 @@ -name: Developer Portal Links Checker -on: - workflow_dispatch: -# runs every monday at 9 am -# schedule: -# - cron: "0 9 * * 1" - -jobs: - devportal-md-links: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: gaurav-nelson/github-action-markdown-link-check@a996638015fbc9ef96beef1a41bbad7df8e06154 - # checks all markdown files from /docs including all subfolders - with: - use-quiet-mode: 'yes' - use-verbose-mode: 'yes' - config-file: './.github/workflows/mlc-devportal.config.json' - folder-path: './apps/devportal/data/markdown/partials, ./apps/devportal/data/markdown/pages/commerce, ./apps/devportal/data/markdown/pages/content-management, ./apps/devportal/data/markdown/pages/contribute, ./apps/devportal/data/markdown/pages/customer-data-management, ./apps/devportal/data/markdown/pages/dam-and-content-operations, ./apps/devportal/data/markdown/pages/devops, ./apps/devportal/data/markdown/pages/integrations, ./apps/devportal/data/markdown/pages/learn, ./apps/devportal/data/markdown/pages/marketing-automation, ./apps/devportal/data/markdown/pages/newsletter, ./apps/devportal/data/markdown/pages/personalization-testing, ./apps/devportal/data/markdown/pages/trials' - file-path: './apps/devportal/data/markdown/pages/_newsletter.md, ./apps/devportal/data/markdown/pages/_search.md, ./apps/devportal/data/markdown/pages/community.md, ./apps/devportal/data/markdown/pages/discover.md, ./apps/devportal/data/markdown/pages/docs.md, ./apps/devportal/data/markdown/pages/help.md, ./apps/devportal/data/markdown/pages/home.md, ./apps/devportal/data/markdown/pages/learn.md' - \ No newline at end of file +name: Developer Portal Links Checker +on: + workflow_dispatch: +# runs every monday at 9 am +# schedule: +# - cron: "0 9 * * 1" + +jobs: + devportal-md-links: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: gaurav-nelson/github-action-markdown-link-check@a996638015fbc9ef96beef1a41bbad7df8e06154 + # checks all markdown files from /docs including all subfolders + with: + use-quiet-mode: 'yes' + use-verbose-mode: 'yes' + config-file: './.github/workflows/mlc-devportal.config.json' + folder-path: './apps/devportal/data/markdown/partials, ./apps/devportal/data/markdown/pages/commerce, ./apps/devportal/data/markdown/pages/content-management, ./apps/devportal/data/markdown/pages/contribute, ./apps/devportal/data/markdown/pages/customer-data-management, ./apps/devportal/data/markdown/pages/dam-and-content-operations, ./apps/devportal/data/markdown/pages/devops, ./apps/devportal/data/markdown/pages/integrations, ./apps/devportal/data/markdown/pages/learn, ./apps/devportal/data/markdown/pages/marketing-automation, ./apps/devportal/data/markdown/pages/newsletter, ./apps/devportal/data/markdown/pages/personalization-testing, ./apps/devportal/data/markdown/pages/trials' + file-path: './apps/devportal/data/markdown/pages/_newsletter.md, ./apps/devportal/data/markdown/pages/_search.md, ./apps/devportal/data/markdown/pages/community.md, ./apps/devportal/data/markdown/pages/discover.md, ./apps/devportal/data/markdown/pages/docs.md, ./apps/devportal/data/markdown/pages/help.md, ./apps/devportal/data/markdown/pages/home.md, ./apps/devportal/data/markdown/pages/learn.md' diff --git a/.github/workflows/check-downloads-links.yml b/.github/workflows/check-downloads-links.yml index 806fde424..93fedce07 100644 --- a/.github/workflows/check-downloads-links.yml +++ b/.github/workflows/check-downloads-links.yml @@ -1,20 +1,19 @@ -name: Downloads Links Checker -on: - workflow_dispatch: -# runs every monday at 9 am -# schedule: -# - cron: "0 9 * * 1" - -jobs: - downloads-md-links: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: gaurav-nelson/github-action-markdown-link-check@a996638015fbc9ef96beef1a41bbad7df8e06154 - # checks all markdown files from /docs including all subfolders - with: - use-quiet-mode: 'yes' - use-verbose-mode: 'yes' - config-file: './.github/workflows/mlc-downloads.config.json' - folder-path: './apps/devportal/data/markdown/pages/downloads/' - \ No newline at end of file +name: Downloads Links Checker +on: + workflow_dispatch: +# runs every monday at 9 am +# schedule: +# - cron: "0 9 * * 1" + +jobs: + downloads-md-links: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: gaurav-nelson/github-action-markdown-link-check@a996638015fbc9ef96beef1a41bbad7df8e06154 + # checks all markdown files from /docs including all subfolders + with: + use-quiet-mode: 'yes' + use-verbose-mode: 'yes' + config-file: './.github/workflows/mlc-downloads.config.json' + folder-path: './apps/devportal/data/markdown/pages/downloads/' diff --git a/.github/workflows/mlc-devportal.config.json b/.github/workflows/mlc-devportal.config.json index 60722a4b0..5be781e8c 100644 --- a/.github/workflows/mlc-devportal.config.json +++ b/.github/workflows/mlc-devportal.config.json @@ -1,32 +1,32 @@ -{ - "replacementPatterns": [ - { - "pattern": "^/", - "replacement": "https://developers.sitecore.com/" - }, - { - "pattern": "^https://kb.sitecore.net/articles/", - "replacement": "https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB0" - } - ], - "ignorePatterns": [ - { - "pattern": "^#" - }, - { - "pattern": "^http://localhost:3000" - } - ], - "httpHeaders": [ - { - "urls": ["https://github.com/", "https://guides.github.com/", "https://help.github.com/", "https://docs.github.com/", "kb.sitecore.net"], - "headers": { - "Accept-Encoding": "zstd, br, gzip, deflate" - } - } - ], - "retryOn429": true, - "retryCount": 5, - "fallbackRetryDelay": "30s", - "aliveStatusCodes": [200, 206, 403] -} +{ + "replacementPatterns": [ + { + "pattern": "^/", + "replacement": "https://developers.sitecore.com/" + }, + { + "pattern": "^https://kb.sitecore.net/articles/", + "replacement": "https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB0" + } + ], + "ignorePatterns": [ + { + "pattern": "^#" + }, + { + "pattern": "^http://localhost:3000" + } + ], + "httpHeaders": [ + { + "urls": ["https://github.com/", "https://guides.github.com/", "https://help.github.com/", "https://docs.github.com/", "kb.sitecore.net"], + "headers": { + "Accept-Encoding": "zstd, br, gzip, deflate" + } + } + ], + "retryOn429": true, + "retryCount": 5, + "fallbackRetryDelay": "30s", + "aliveStatusCodes": [200, 206, 403] +} diff --git a/.github/workflows/mlc-downloads.config.json b/.github/workflows/mlc-downloads.config.json index a7f5da6de..7eac67d5d 100644 --- a/.github/workflows/mlc-downloads.config.json +++ b/.github/workflows/mlc-downloads.config.json @@ -1,29 +1,29 @@ -{ - "replacementPatterns": [ - { - "pattern": "^/", - "replacement": "https://developers.sitecore.com/" - }, - { - "pattern": "^https://kb.sitecore.net/articles/", - "replacement": "https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB0" - } - ], - "ignorePatterns": [ - { - "pattern": "^#" - } - ], - "httpHeaders": [ - { - "urls": ["https://github.com/", "https://guides.github.com/", "https://help.github.com/", "https://docs.github.com/", "kb.sitecore.net"], - "headers": { - "Accept-Encoding": "zstd, br, gzip, deflate" - } - } - ], - "retryOn429": true, - "retryCount": 5, - "fallbackRetryDelay": "30s", - "aliveStatusCodes": [200, 206, 403] -} +{ + "replacementPatterns": [ + { + "pattern": "^/", + "replacement": "https://developers.sitecore.com/" + }, + { + "pattern": "^https://kb.sitecore.net/articles/", + "replacement": "https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB0" + } + ], + "ignorePatterns": [ + { + "pattern": "^#" + } + ], + "httpHeaders": [ + { + "urls": ["https://github.com/", "https://guides.github.com/", "https://help.github.com/", "https://docs.github.com/", "kb.sitecore.net"], + "headers": { + "Accept-Encoding": "zstd, br, gzip, deflate" + } + } + ], + "retryOn429": true, + "retryCount": 5, + "fallbackRetryDelay": "30s", + "aliveStatusCodes": [200, 206, 403] +} diff --git a/.gitignore b/.gitignore index bad4077b5..8907e8a3b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,41 +1,46 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. - -# Dependencies -node_modules -.pnp -.pnp.js - -# Local env files -.env -.env.local -.env.development.local -.env.test.local -.env.production.local - -# Testing -coverage - -# Turbo -.turbo - -# Vercel -.vercel - -# Build Outputs -.next/ -out/ -build -dist - - -# Debug -npm-debug.log* -yarn-debug.log* -yarn-error.log* - -# Misc -.DS_Store -*.pem +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# Dependencies +node_modules +.pnp +.pnp.js + +# Local env files +.env +.env.local +.env.development.local +.env.test.local +.env.production.local + +# Testing +coverage + +# Turbo +.turbo + +# Vercel +.vercel + +# Build Outputs +.next/ +out/ +build +dist + + +# Debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Misc +.DS_Store +*.pem .vercel .env*.local + +# generated postbuild +robots.txt +sitemap*.xml +node_modules \ No newline at end of file diff --git a/apps/devportal/.husky/pre-commit b/.husky/pre-commit similarity index 100% rename from apps/devportal/.husky/pre-commit rename to .husky/pre-commit diff --git a/.lintstagedrc b/.lintstagedrc new file mode 100644 index 000000000..6a541d78d --- /dev/null +++ b/.lintstagedrc @@ -0,0 +1,4 @@ +{ + "*.ts?(x)": ["prettier -w --config .prettierrc"], + "*.js?(x)": ["prettier -w --config .prettierrc"] +} diff --git a/.prettierignore b/.prettierignore index d5b378f3c..fe4d905ae 100644 --- a/.prettierignore +++ b/.prettierignore @@ -29,5 +29,4 @@ yarn-error.log* .env.production.local # vercel -.vercel -.turbo \ No newline at end of file +.vercel \ No newline at end of file diff --git a/.prettierrc.json b/.prettierrc similarity index 100% rename from .prettierrc.json rename to .prettierrc diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 67936621c..4dca0680b 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,76 +1,76 @@ -# Contributor Covenant Code of Conduct - -## Our Pledge - -In the interest of fostering an open and welcoming environment, we as -contributors and maintainers pledge to making participation in our project and -our community a harassment-free experience for everyone, regardless of age, body -size, disability, ethnicity, sex characteristics, gender identity and expression, -level of experience, education, socio-economic status, nationality, personal -appearance, race, religion, or sexual identity and orientation. - -## Our Standards - -Examples of behavior that contributes to creating a positive environment -include: - -- Using welcoming and inclusive language -- Being respectful of differing viewpoints and experiences -- Gracefully accepting constructive criticism -- Focusing on what is best for the community -- Showing empathy towards other community members - -Examples of unacceptable behavior by participants include: - -- The use of sexualized language or imagery and unwelcome sexual attention or - advances -- Trolling, insulting/derogatory comments, and personal or political attacks -- Public or private harassment -- Publishing others' private information, such as a physical or electronic - address, without explicit permission -- Other conduct which could reasonably be considered inappropriate in a - professional setting - -## Our Responsibilities - -Project maintainers are responsible for clarifying the standards of acceptable -behavior and are expected to take appropriate and fair corrective action in -response to any instances of unacceptable behavior. - -Project maintainers have the right and responsibility to remove, edit, or -reject comments, commits, code, wiki edits, issues, and other contributions -that are not aligned to this Code of Conduct, or to ban temporarily or -permanently any contributor for other behaviors that they deem inappropriate, -threatening, offensive, or harmful. - -## Scope - -This Code of Conduct applies both within project spaces and in public spaces -when an individual is representing the project or its community. Examples of -representing a project or community include using an official project e-mail -address, posting via an official social media account, or acting as an appointed -representative at an online or offline event. Representation of a project may be -further defined and clarified by project maintainers. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at community@sitecore.com. All -complaints will be reviewed and investigated and will result in a response that -is deemed necessary and appropriate to the circumstances. The project team is -obligated to maintain confidentiality with regard to the reporter of an incident. -Further details of specific enforcement policies may be posted separately. - -Project maintainers who do not follow or enforce the Code of Conduct in good -faith may face temporary or permanent repercussions as determined by other -members of the project's leadership. - -## Attribution - -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, -available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html - -[homepage]: https://www.contributor-covenant.org - -For answers to common questions about this code of conduct, see -https://www.contributor-covenant.org/faq +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, sex characteristics, gender identity and expression, +level of experience, education, socio-economic status, nationality, personal +appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +- Using welcoming and inclusive language +- Being respectful of differing viewpoints and experiences +- Gracefully accepting constructive criticism +- Focusing on what is best for the community +- Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +- The use of sexualized language or imagery and unwelcome sexual attention or + advances +- Trolling, insulting/derogatory comments, and personal or political attacks +- Public or private harassment +- Publishing others' private information, such as a physical or electronic + address, without explicit permission +- Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at community@sitecore.com. All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see +https://www.contributor-covenant.org/faq diff --git a/LICENSE.MD b/LICENSE.MD index d64569567..c61b66391 100644 --- a/LICENSE.MD +++ b/LICENSE.MD @@ -1,182 +1,181 @@ - Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" @@ -187,16 +186,16 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] +Copyright [yyyy] [name of copyright owner] - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/README.md b/README.md index 143582af8..c7497d744 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ The Sitecore developer portal is built with Next.js, Typescript, Chakra UI and [ - `devportal`: Developer Portal public site ([Next.js](https://nextjs.org/) based) - packages - `@scdp/ui`: a React component library based on [Sitecore Blok](https://blok.sitecore.com) used by `devportal` application - - `@scdp/changelog`: Custom library to retrieve and parse changelog data + - `@lib/changelog`: Custom library to retrieve and parse changelog data - `@scdp/eslint-config`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`) - `@scdp/jest-presets`: `jest` configuration used throughout the monorepo - `@scdp/typescript-config`: `tsconfig.json`s used throughout the monorepo @@ -101,7 +101,7 @@ NEXT_PUBLIC_SITECORE_CDP_POS= _Note: The site will still function if the keys are missing or left blank._ ---- +--- #### Sitecore Search diff --git a/apps/devportal/.eslintrc.js b/apps/devportal/.eslintrc.js deleted file mode 100644 index 6437eb4dd..000000000 --- a/apps/devportal/.eslintrc.js +++ /dev/null @@ -1,9 +0,0 @@ -/** @type {import("eslint").Linter.Config} */ -module.exports = { - root: true, - extends: ['@scdp/eslint-config/next.js'], - parser: '@typescript-eslint/parser', - parserOptions: { - project: true, - }, -}; diff --git a/apps/devportal/.gitignore b/apps/devportal/.gitignore deleted file mode 100644 index f0add9d48..000000000 --- a/apps/devportal/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -# generated postbuild -robots.txt -sitemap*.xml \ No newline at end of file diff --git a/apps/devportal/.lintstagedrc b/apps/devportal/.lintstagedrc deleted file mode 100644 index 905b48a95..000000000 --- a/apps/devportal/.lintstagedrc +++ /dev/null @@ -1,8 +0,0 @@ -{ - "*.ts?(x)": [ - "prettier -w --config .prettierrc" - ], - "*.js?(x)": [ - "prettier -w --config .prettierrc" - ] -} diff --git a/apps/devportal/.prettierrc.json.js b/apps/devportal/.prettierrc.json.js deleted file mode 100644 index f4a17c6dd..000000000 --- a/apps/devportal/.prettierrc.json.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('prettier-config/prettier-config.config') diff --git a/apps/devportal/data/markdown/pages/community.md b/apps/devportal/data/markdown/pages/community.md deleted file mode 100644 index 8c5a67a5b..000000000 --- a/apps/devportal/data/markdown/pages/community.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: 'Sitecore Community' -pageType: 'social' -description: 'Connect with other active and passionate members of the Sitecore Community' -stackexchange: ['/questions?tab=Newest'] -twitter: ['@WeAreSitecore'] -youtube: 'PL1jJVFm_lGnyRHZbHoviZzmoE8SKU-5EU' -sitecoreCommunityQuestions: true -sitecoreCommunityQuestionsSort: ['publish', 'view'] ---- - - diff --git a/apps/devportal/data/markdown/pages/contribute/community.md b/apps/devportal/data/markdown/pages/contribute/community.md deleted file mode 100644 index c4aae030f..000000000 --- a/apps/devportal/data/markdown/pages/contribute/community.md +++ /dev/null @@ -1,100 +0,0 @@ ---- -title: "Sitecore Community Integrations" -description: "Configuration options" -hasInPageNav: false - ---- - -## Configuration - -The feeds can be configured via headmatter. - -### Blog - -| Key | Type | Description | -| ------------------------- | -------------- | ------------------------------------------------------------------------------- | -| sitecoreCommunityBlog | boolean | If true, will display blog posts. | -| sitecoreCommunityBlog | number | Will display the number of results specified (max 5) | -| sitecoreCommunityBlogSort | `SortOption` | Will sort the blog posts to the specified `SortOption` | -| sitecoreCommunityBlogSort | `SortOption`[] | Will show the sort select menu, default sort will be the first presented option | - -**Example** - -```md ---- -title: 'My Page' -description: '...' -sitecoreCommunityBlog: true ---- -``` - -### Questions - -As of writing this, the questions component only exists on the homepage. - -| Key | Type | Description | -| ---------------------------------- | --------------- | --------------------------------------------------------------------------------------- | -| sitecoreCommunityQuestions | boolean | If true, will display questions. | -| sitecoreCommunityQuestions | number | Will display the number of results specified (max 5) | -| sitecoreCommunityQuestionsSort | `SortOption` | Will sort the questions posts to the specified `SortOption` | -| sitecoreCommunityQuestionsSort | `SortOption`[] | Will show the sort select menu, default sort will be the first presented option | -| sitecoreCommunityQuestionsCategory | `ForumOption` | Will filter the content by forum | -| sitecoreCommunityQuestionsCategory | `ForumOption`[] | Will show the category filter menu, default category will be the first presented option | - -**ForumOption** - -- events -- news -- experiencePlatform -- contentManagement -- orderManagement -- contentOperations -- customerDataManagement -- digitalAssetManagement -- marketingAutomation -- personalizationAndTesting -- searchAndMerchandizing -- storefrontsAndMarketplaces - -**Example** - -```md ---- -title: 'My Page' -description: '...' -sitecoreCommunityQuestions: true -sitecoreCommunityQuesitonsCategory: ['experiencePlatform', 'contentOperations'] ---- -``` - -### Events - -| Key | Type | Description | -| ----------------------- | ------- | ---------------------------- | -| sitecoreCommunityEvents | boolean | If true, will display events | - -**Example** - -```md ---- -title: 'My Page' -description: '...' -sitecoreCommunityEvents: true ---- -``` - -### News - -| Key | Type | Description | -| --------------------- | ------- | -------------------------------------------- | -| sitecoreCommunityNews | boolean | If true, will display news and announcements | - -**Example** - -```md ---- -title: 'My Page' -description: '...' -sitecoreCommunityNews: true ---- -``` \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/contribute/configuration.md b/apps/devportal/data/markdown/pages/contribute/configuration.md deleted file mode 100644 index 9600d72f5..000000000 --- a/apps/devportal/data/markdown/pages/contribute/configuration.md +++ /dev/null @@ -1,59 +0,0 @@ ---- -title: "Configuration options" -description: "Learn more on configuring pages" -hasInPageNav: false ---- - -## Configuration -Each page can store metadata (frontmatter) in head of the page. Required fields are title and description, but there are lots of other settings possible. A default page setup would look like this -```markdown ---- -title: 'Page Title' -description: 'Description of the page' ---- - -# This is where the content would be - -``` - -## Options -Besides the title and description there are various other options available: - -### Core -These parameters affect core functionality of a page: - -|Variable|Type|Purpose| -|-|-|-| -|PageType|string|Options to use a different pagetype (defaults to default)| -|hasInPageNav|boolean|Shows a menu that links to all H2 element on the current page| -|hasSubPageNav|boolean|Shows a menu that uses a manifest.json as datasource| -|heroImage|string|Override the current hero image with a custom image| -|openGraphImage|string|Override the OG image with a custom image| -|partials|string[]|Render the contents of the partials on this page (deprecated)| -|partialGroups|PagePartials[]|Render one or multiple groups with partials on this page ([example](https://github.com/Sitecore/developer-portal/blob/773a9f5783ad34293ed3959fc400c795f0fc9d8b/apps/devportal/data/markdown/pages/discover.md?plain=1#L7))| - -### Integrations / Components -The configuration options enable and customize different components used on the pages - -|Variable|Type|Purpose| -|-|-|-| -stackexchange|string | string[]|string or string array of tags (#tagname)| -twitter|string | string[]|String array of accounts or hashtags| -youtube|string|Playlist Id| -changelogProductId|string[]|array of productIds to include| -changelog|string|Number of entries to retrieve| -promoBefore|string[]|Name of .ts file within `apps\devportal\data\promos` folder (without file extension)| -promoAfter|string[]|Name of .ts file within `apps\devportal\data\promos` folder (without file extension)| - -### Sitecore Community -These options can enable/disable Sitecore Community integrations on a page level - -|Variable|Type|Purpose| -|-|-|-| -sitecoreCommunityBlog|number/boolean|[Read more here](/contribute/community)| -sitecoreCommunityBlogSort|SortOption/SortOption[]|[Read more here](/contribute/community)| -sitecoreCommunityEvents|boolean|[Read more here](/contribute/community)| -sitecoreCommunityNews|boolean|[Read more here](/contribute/community)| -sitecoreCommunityQuestions|number/boolean|[Read more here](/contribute/community)| -sitecoreCommunityQuestionsSort|SortOption/SortOption[]|[Read more here](/contribute/community)| -sitecoreCommunityQuestionsCategory|ForumOption/ForumOption[]|[Read more here](/contribute/community)| \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/contribute/content.md b/apps/devportal/data/markdown/pages/contribute/content.md deleted file mode 100644 index 74db1bf78..000000000 --- a/apps/devportal/data/markdown/pages/contribute/content.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: 'Content' -description: 'Learn more on how you can contribute to the Developer Portal' -hasInPageNav: false -hasSubPageNav: true ---- - -## Authoring content - -Every page within the developer portal is reprented by a markdown (*.md) file. For example, the content for this page is [here](https://github.com/Sitecore/developer-portal/blob/main/apps/devportal/data/markdown/pages/contribute/content.md). You can use Markdown to write the content and the developer portal will render it as HTML. For more information on how to use Markdown please check [this](https://www.markdownguide.org/getting-started/) page. - -### How do you get started - -To get started you will need to create a .md file within the folder you want the page to live. All paths underneath the `apps\devportal\data\markdown\pages` path are considered a page. - -Let's say we want to create a page directly under the root of the site (developers.sitecore.com/hello-world). - -To achieve this we can do two things: -1. Create a hello-world.md file withing `apps\devportal\data\markdown\pages` -2. Create a folder called hello-world under `apps\devportal\data\markdown\pages` and create an index.md file within that folder. - -Both options are good, the consideration you need to make is whether there is a need to host other pages underneath the path /hello-world/. If that is the case options 2 is most likely your best choice. - -*Please note that you can always start with a file `hello-world.md` and change it later to `/hello-world/index.md` when there is a need for more nested pages.* \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/contribute/index.md b/apps/devportal/data/markdown/pages/contribute/index.md deleted file mode 100644 index cd0d6db45..000000000 --- a/apps/devportal/data/markdown/pages/contribute/index.md +++ /dev/null @@ -1,74 +0,0 @@ ---- -title: 'Introduction' -description: 'Learn more on how you can contribute to the Developer Portal' -hasInPageNav: false -hasSubPageNav: true ---- - -## About this portal - -The Sitecore developer portal is built using Next.js and Chakra UI, and is hosted on Vercel. The application uses static site generation to create all the pages at build time. It also utilizes Incremental Static Regeneration (ISR) to automatically update the app when changes to page content are made. Much of the page content is written in Markdown and is converted to HTML at build time. Images that are used are managed in Sitecore DAM and are published to a CDN. - -All code for this project can be found in the [public GitHub repository](https://github.com/Sitecore/developer-portal). - -## Build Prerequisites - -### Node.js - -The developer portal is built with Next.js, so you'll need to have Node.js installed to build the project. You can find the latest version of Node.js [here](https://nodejs.org/en/). We recommend using the LTS version of Node.js. - -### Environment Variables - -The Sitecore developer portal incorporates a number of third party services to bring in content. For full functionality, you must create a **.env.local** file in the root of the project and add in the below environment variables. - -The following variables should exist within the .env.local file: - -``` -YOUTUBE_API_KEY="An API key with YouTube Data API v3 access enabled" -TWITTER_BEARER_TOKEN="A bearer token from Twitter " -``` - -_Note: The site will still function without the above keys. The components that require these environment variables will fail gracefully and not display on the pages._ - -## Getting Started - -1. Install [Node.js](https://nodejs.org/en/), we recommend the LTS version. -2. Clone the repository `git clone https://github.com/Sitecore/developer-portal.git` -3. Inside the repository run `npm install` to install all the dependencies. -4. Create a `.env.local` file in the root of the project and add the following environment variables: - -``` -YOUTUBE_API_KEY="" -TWITTER_BEARER_TOKEN="" -``` - -(For more information on populating environment variables see section **Environment Variables** above.) - -5. Run `npm run dev` to start the development server. -6. Open the **http://localhost:3000** in your browser to see the result! - -## Contributions - -We are very grateful to the community for contributing bug fixes and improvements. We welcome all efforts to evolve and improve the Sitecore Developer Portal; read below to learn how to participate in those efforts. - -### Code of Conduct - -Sitecore has adopted a Code of Conduct that we expect project participants to adhere to. Please read [the full text](https://github.com/Sitecore/developer-portal/blob/main/CODE_OF_CONDUCT.md) so that you can understand what actions will and will not be tolerated. - -### Feedback, ideas or found issues? - -The Sitecore Developer Portal is under constant development. Do you have any feedback or ideas that can improve the developer portal please let us know! Create an issue in our [GitHub repository](https://github.com/Sitecore/developer-portal/issues). Please use the issue or feature request template, label it accordingly and we will review your ticket and follow up if necessary. - -### Contributing Guide - -If you want to make changes to the code, follow these steps: - -1. Fork the Developer Portal Repo GitHub repo. -2. Clone the forked repo to your local machine. -3. Create a feature branch from `main` for your changes. e.g. `git checkout -b my-feature-branch` -4. `npm install` -5. `npm run dev` (to preview your changes locally) -6. Make your changes (_if you changes include images please use the `public/images` folder to store the image(s)_) -7. Commit, push to your remote fork of the Developer Portal repo, then open a pull request (PR) to the `main` branch of the Developer Portal repo. - -Your changes will be reviewed and merged if appropriate. diff --git a/apps/devportal/data/markdown/pages/contribute/manifest.json b/apps/devportal/data/markdown/pages/contribute/manifest.json deleted file mode 100644 index f9c261500..000000000 --- a/apps/devportal/data/markdown/pages/contribute/manifest.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "title": "Contribution Guide", - "description": "Contribute to the Developer Portal", - "heading": true, - "path": "/contribute", - "routes": [ - { - "title": "Introduction", - "path": "" - }, - { - "title": "Page Structure", - "path": "page-structure" - }, - { - "title": "Configuration", - "path": "configuration" - }, - { - "title": "Creating Content", - "path": "content" - }, - { - "title": "Components", - "path": "components" - }, - { - "title": "Sitecore Community", - "path": "community" - } - ] -} diff --git a/apps/devportal/data/markdown/pages/downloads/Active_Directory/14/Active_Directory_14/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Active_Directory/14/Active_Directory_14/Release_Notes.md deleted file mode 100644 index 6535bb916..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Active_Directory/14/Active_Directory_14/Release_Notes.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Active_Directory/14/Active_Directory_14/Release_Notes ---- - -**March 2018, released Sitecore Active Directory 1.4 rev. 180313** - -## Compatibility - -This version of the module only runs on Sitecore 9.0 or later. - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Support for Sitecore 9.0 or later. | | | - | ​The AD module now uses Role Based configuration.​ | | 209739 | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Cannot turn on Debug mode​. | | 211199 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Active_Directory/14/Active_Directory_14/Upgrade_Guide.md b/apps/devportal/data/markdown/pages/downloads/Active_Directory/14/Active_Directory_14/Upgrade_Guide.md deleted file mode 100644 index 39f791ac4..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Active_Directory/14/Active_Directory_14/Upgrade_Guide.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "Upgrade Guide" -description: "" -origin: https://dev.sitecore.net/Downloads/Active_Directory/14/Active_Directory_14/Upgrade_Guide ---- - -To upgrade the module from version 1.3 rev. 161017 to version 1.4.0 rev. 180313: - -1. Download the Active Directory 1.4.0 rev. 180313 update package. -2. Open the Update Installation Wizard - `http(s):///sitecore/admin/UpdateInstallationWizard.aspx` and install the Sitecore Active Directory 1.4.0 rev. 180313.update package. -In the new version of the Active Directory module, the `ldap.config` file is stored in a new location `\App_Config\Modules\ActiveDirectory\ldap.config` in accordance with the new Sitecore configuration layers.5. Update the existing `\App_Config\Include\ldap.config` file to contain the necessary configuration patches in `\App_Config\Modules\ActiveDirectory\ldap.config`. -6. In the `Web.config` file, set the mode attribute of the `system.web/authentication` node to `None`. -7. In the `Web.config` file, add the following node: -  `` -    `` -      `` -        `` -      `` -    `` -  `` \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Active_Directory/14/Active_Directory_14/index.md b/apps/devportal/data/markdown/pages/downloads/Active_Directory/14/Active_Directory_14/index.md deleted file mode 100644 index 4c4d711c5..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Active_Directory/14/Active_Directory_14/index.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: "Active Directory 1.4" -description: "" -origin: https://dev.sitecore.net/Downloads/Active_Directory/14/Active_Directory_14.aspx ---- - -The Sitecore XP Active Directory module provides the integration of a Microsoft Active Directory domain with a Sitecore XP solution. You can integrate domain users and groups available into Sitecore XP as Sitecore users and Sitecore roles immediately after the module installation and configuration. Moreover, user profiles can be easily extended with custom properties from Active Directory. - - - - This version of the Active Directory module runs on [Sitecore Experience Platform 9.0](/downloads/Sitecore_Experience_Platform/90). -Sitecore Experience Platform 9.1.0 or later does not support the Active Directory module. -Previous versions of this module [can be found here](/downloads/Active_Directory). - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Active Directory 1.4](https://scdp.blob.core.windows.net/downloads/Active%20Directory/14/Active%20Directory%2014/Secure/Sitecore%20Active%20Directory%201.4.0%20rev.%20180313.zip) | Installation package for Active Directory 1.4 for Sitecore XP 9.0 and later. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Active_Directory/14/Active_Directory_14/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known Issues](https://kb.sitecore.net/articles/083498) | Choose this link to view the known issues list of the Sitecore Active Directory module. | - -## Upgrade Options - - | Resource | Description | - | --- | --- | - | [Upgrade Guide](/downloads/Active_Directory/14/Active_Directory_14/Upgrade_Guide) | To upgrade from a previous Sitecore version please follow the instructions in this guide. | - | [Upgrade Package](https://scdp.blob.core.windows.net/downloads/Active%20Directory/14/Active%20Directory%2014/Secure/Sitecore%20Active%20Directory%201.4.0%20rev.%20180313%20(update%20package).zip) | Download the files that you need for the upgrade process. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Active Directory Module Guide](https://scdp.blob.core.windows.net/downloads/Active%20Directory/14/Active%20Directory%2014/Secure/Sitecore_Active_Directory_v140_Guide_SC90.pdf) | How to install, configure, and use of the Active Directory module. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_0/Active_Directory_1_2/Known_Issues.md b/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_0/Active_Directory_1_2/Known_Issues.md deleted file mode 100644 index 31ca4e186..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_0/Active_Directory_1_2/Known_Issues.md +++ /dev/null @@ -1,82 +0,0 @@ ---- -title: "Known Issues" -description: "" -origin: https://dev.sitecore.net/Downloads/Active_Directory/1_0/Active_Directory_1_2/Known_Issues ---- - -The list of known issues which are present in the current version of the Active Directory module: - -1. When the AD server name starts with "dc" or "DC" in the AD connection string, as in: - - - - ``` - `` - ``` - - - - the AD module writes errors to the log file: - - - - 1320 12:18:00 WARN AD: reconnected - - 1320 12:18:00 WARN AD : attempt reconnecting... - - - - **Workaround:** Use the server IP instead of the server name in the AD connection string: - - - - ``` - `` - ``` - - - - [IP] is the IP of the AD server, e.g. 127.0.0.1 The AD connection string is placed in the App_Config/ConnectionStrings.config file. - - - - -2. If you have written custom code that calls the Active Directory module’s API, you may encounter compilation errors (“missing assembly”) when you upgrade to the latest version. This could happen due to a change in the assembly version between the previous and latest module versions. - - - - **Workaround:** To work around this issue, re-reference the [module] assembly as a version independent reference (specific version = “false”) and recompile your code. - - - - -3. An exception may occur when changing the profile of an Active Directory user created in Sitecore. Workaround: Open the /App_Config/Security/Domains.config.xml file and add the following line to the domains element: - - - - ``` - `` - ``` - - - - The defaultProfileItemID attribute defines the profile item that will be used for users from the domain if the profile is not set for the user explicitly. - - - - -4. The first installation of the module package may fail without any exact error description. - - ** - - Workaround:** Install the package again (use the appropriate button on the last wizard screen) and choose Overwrite option for all files. - - - - -5. The AD module does not support the SSL protocol. - - - - -6. ActiveDirectoryMembershipUser doesn't support LastLoginDate and LastActivityDate and there are no default properties in AD. [http://msdn.microsoft.com/ru-ru/library/system.web.security.activedirectorymembershipuser.lastlogindate%28v=vs.110%29.aspx](http://msdn.microsoft.com/ru-ru/library/system.web.security.activedirectorymembershipuser.lastlogindate%28v=vs.110%29). \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_0/Active_Directory_1_2/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_0/Active_Directory_1_2/Release_Notes.md deleted file mode 100644 index 10d4c21f0..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_0/Active_Directory_1_2/Release_Notes.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Release notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Active_Directory/1_0/Active_Directory_1_2/Release_Notes ---- - -Released **December 26th, 2014**. Tested with **Sitecore CMS 7.2 rev. 141226 (Update-3)**, **Sitecore CMS 7.5 rev. 141003**, and **Sitecore XP 8.0 rev. 141212**. - -## Compatibility - -This version of the module only runs on Sitecore 7.2 or later. - -## Change Log - -Issues resolved: - -- The LDAPLogin page did not register the user ticket. The issue has been fixed. **(864)** -- Single sign-on through the module negatively impacted the Experience Editor ribbon (in preview mode). The issue has been fixed. **(822)** -- Spaces in the Organization Unit name were not supported. The issue has been fixed. **(861)** -- AD used the same cache for the same connection string, but with different organizations. The issue has been fixed. **(12526)** -- The `SitecoreADMembershipProvider` created users with incorrect password question/answer values. The issue has been fixed. **(868)** -- The `attributeMapName="sAMAccountName"` intermittently caused the `DirectoryNotificationProvider` to stop working. The issue has been fixed. **(12527)** -- The `SitecoreADRoleProvider` returned no roles if the Role's cache was disabled. The issue has been fixed. **(12893)** \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_0/Active_Directory_1_2/Upgrade_Guide.md b/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_0/Active_Directory_1_2/Upgrade_Guide.md deleted file mode 100644 index 30c8a6917..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_0/Active_Directory_1_2/Upgrade_Guide.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: "Upgrade Guide" -description: "" -origin: https://dev.sitecore.net/Downloads/Active_Directory/1_0/Active_Directory_1_2/Upgrade_Guide ---- - -To upgrade the module from **version 1.1 rev. 130705** to **version 1.2 rev. 141225**: - -- Download the Active Directory 1.2 rev. 141225 upgrade package [from the module detail page](/downloads/Active_Directory/1_0/Active_Directory_1_2). -- Install **Sitecore Active Directory component 1.2 rev. 141225 Upgrade.zip.** -- Click **"Yes to all"** when you are asked whether you want to override existing files. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_0/Active_Directory_1_2/index.md b/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_0/Active_Directory_1_2/index.md deleted file mode 100644 index 3bcf9d58a..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_0/Active_Directory_1_2/index.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: "Active Directory 1.2" -description: "" -origin: https://dev.sitecore.net/Downloads/Active_Directory/1_0/Active_Directory_1_2.aspx ---- - -The Sitecore XP Active Directory module provides the integration of a Microsoft Active Directory domain with a Sitecore XP solution. You can integrate domain users and groups available into Sitecore XP as Sitecore users and Sitecore roles immediately after the module installation and configuration. Moreover, user profiles can be easily extended with custom properties from Active Directory. - - - - - -- The AD module only supports connection to a Microsoft Active Directory service running on a Microsoft Windows platform. -- This version of the Active Directory module runs on Sitecore CMS 7.2-8.1 -- Previous versions of this module [can be found on the Sitecore Developer Network (SDN)](http://sdn.sitecore.net/Products/AD). -- The newer version of the module that supports Sitecore XP 8.2 and later [can be found here](/downloads/Active_Directory). - - - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Active Directory 1.2 rev. 141225](https://scdp.blob.core.windows.net/downloads/Active%20Directory/1%200/Active%20Directory%201%202/Secure/Sitecore%20Active%20Directory%20component%201.2%20rev.%20141225.zip) | Installation package for Active Directory 1.2 rev. 141225 for Sitecore CMS 7.2 and later. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Active_Directory/1_0/Active_Directory_1_2/Release_Notes) | Release notes for Sitecore Active Directory 1.2 rev. 141225. | - | [Known issues](/downloads/Active_Directory/1_0/Active_Directory_1_2/Known_Issues) | Known issues for Active Directory 1.2 rev. 141225. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Active Directory Module Administrator's Guide (A4)](https://scdp.blob.core.windows.net/downloads/Active%20Directory/1%200/Active%20Directory%201%202/Non-secure/sitecore-active-directory-module-guide-sc72-80-a4.pdf) | How to install, configure, and use of the Active Directory module (A4). | - | [Active Directory Module Administrator's Guide (US-Letter)](https://scdp.blob.core.windows.net/downloads/Active%20Directory/1%200/Active%20Directory%201%202/Non-secure/sitecore-active-directory-module-guide-sc72-80-usletter.pdf) | How to install, configure, and use of the Active Directory module (US-Letter). | - | [Low-Level Security and Custom Providers (SDN)](http://sdn.sitecore.net/Articles/Security/Low_level_Sitecore_Security_and_Custom_Providers) | It is highly recommended to get acquainted with the Low-level Sitecore Security and Custom Providers article before reading the administrator's guide. | - -## Upgrading - - | Resource | Description | - | --- | --- | - | [Upgrade guide](/downloads/Active_Directory/1_0/Active_Directory_1_2/Upgrade_Guide) | Guide to upgrading Active Directory version 1.1 rev. 130705 to version 1.2 rev. 141225. | - | [Upgrade package](https://scdp.blob.core.windows.net/downloads/Active%20Directory/1%200/Active%20Directory%201%202/Secure/Sitecore%20Active%20Directory%20component%20%201.2%20rev.%20141225%20Upgrade.zip) | Update package to update the Active Directory module from version 1.1 rev. 130705 to version 1.2 rev. 141225. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_3/Active_Directory_1_3/Known_Issues.md b/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_3/Active_Directory_1_3/Known_Issues.md deleted file mode 100644 index 25eade15a..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_3/Active_Directory_1_3/Known_Issues.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Known Issues in Sitecore Active Directory 1.3" -description: "" -origin: https://dev.sitecore.net/Downloads/Active_Directory/1_3/Active_Directory_1_3/Known_Issues ---- - -## Known issues - -The list of known issues which are present in the current version of the Active Directory module. - -1. When the AD server name starts with “dc” or “DC” in the AD connection string, as in: - ` ` - the AD module writes errors to the log file: - `1320 12:18:00 WARN AD: reconnected` - ` 1320 12:18:00 WARN AD : attempt reconnecting...` - **Workaround:** - Use the server IP instead of the server name in the AD connection string: - `` - [IP] is the IP of the AD server, e.g. 127.0.0.1 - The AD connection string is placed in the App_Config/ConnectionStrings.config file. -2. If you have written custom code that calls the Active Directory module’s API, you may encounter compilation errors (“missing assembly”) when you upgrade to the latest version. This could happen due to a change in the assembly version between the previous and latest module versions. - **Workaround:** - To work around this issue, re-reference the [module] assembly as a version independent reference (specific version = “false”) and recompile your code. -3. An exception may occur when changing the profile of an Active Directory user created in Sitecore. - **Workaround:** - Open the /App_Config/Security/Domains.config.xmlfile and add the following line to the domains element: - `` - The defaultProfileItemID attribute defines the profile item that will be used for users from the domain if the profile is not set for the user explicitly. -4. The first installation of the module package may fail without any exact error description. - **Workaround:** - Install the package again (use the appropriate button on the last wizard screen) and choose Overwrite option for all files. -5. The AD module does not support the SSL protocol. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_3/Active_Directory_1_3/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_3/Active_Directory_1_3/Release_Notes.md deleted file mode 100644 index b8497965d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_3/Active_Directory_1_3/Release_Notes.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Active_Directory/1_3/Active_Directory_1_3/Release_Notes ---- - -The latest release information for the Active Directory module. - -## Release History - -**October 17 , 2016** - -Sitecore Active Directory v1.3 rev. is released. - -Tested with Sitecore 8.2 rev. 160729. - -### Compatibility - -This version of the module only runs on Sitecore 8.2 or later. - -### Change log. - -Support of Sitecore 8.2 was added. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_3/Active_Directory_1_3/Upgrade_Guide.md b/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_3/Active_Directory_1_3/Upgrade_Guide.md deleted file mode 100644 index b1871cab5..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_3/Active_Directory_1_3/Upgrade_Guide.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: "Upgrade Guide" -description: "" -origin: https://dev.sitecore.net/Downloads/Active_Directory/1_3/Active_Directory_1_3/Upgrade_Guide ---- - -To upgrade the module from **version 1.2 rev. 141225** to **version 1.3 rev. 161017**: - -- Download the Active Directory 1.3 rev. 161017 upgrade package. -- Install **Sitecore Active Directory component 1.3 rev. 161017 Upgrade.zip**. -- Click **"Yes to all"** when you are asked whether you want to override existing files. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_3/Active_Directory_1_3/index.md b/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_3/Active_Directory_1_3/index.md deleted file mode 100644 index 505a42e1c..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Active_Directory/1_3/Active_Directory_1_3/index.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: "Active Directory 1.3" -description: "" -origin: https://dev.sitecore.net/Downloads/Active_Directory/1_3/Active_Directory_1_3.aspx ---- - -The Sitecore XP Active Directory module provides the integration of a Microsoft Active Directory domain with a Sitecore XP solution. You can integrate domain users and groups available into Sitecore XP as Sitecore users and Sitecore roles immediately after the module installation and configuration. Moreover, user profiles can be easily extended with custom properties from Active Directory. - - - - This version of the Active Directory module runs on [Sitecore Experience Platform 8.2](/downloads/Sitecore_Experience_Platform/82). -Previous versions of this module [can be found here](/downloads/Active_Directory). - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Active Directory 1.3 rev.161017](https://scdp.blob.core.windows.net/downloads/Active%20Directory/1%203/Active%20Directory%201%203/Secure/Sitecore%20Active%20Directory%20component%201.3%20rev.%20161017.zip) | Installation package for Active Directory 1.3 rev. 161017 for Sitecore XP 8.2 and later | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Package for XM/XP configurations](https://scdp.blob.core.windows.net/downloads/Active%20Directory/1%203/Active%20Directory%201%203/Secure/Sitecore%20Active%20Directory%20component%201.3%20rev.%20161017.scwdp.zip) | WebDeploy package for all XM/XP configurations. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Active_Directory/1_3/Active_Directory_1_3/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known Issues](/downloads/Active_Directory/1_3/Active_Directory_1_3/Known_Issues) | Choose this link to view the known issues list in the Sitecore Active Directory 1.3 module. | - -## Upgrade Options - - | Resource | Description | - | --- | --- | - | [Upgrade Guide](/downloads/Active_Directory/1_3/Active_Directory_1_3/Upgrade_Guide) | To upgrade from a previous Sitecore version please follow the instructions in this guide. | - | [Upgrade Package](https://scdp.blob.core.windows.net/downloads/Active%20Directory/1%203/Active%20Directory%201%203/Secure/Sitecore%20Active%20Directory%20component%20%201.3%20rev.%20161017%20Upgrade.zip) | Download the files that you need for the upgrade process. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Active Directory Module Guide](https://scdp.blob.core.windows.net/downloads/Active%20Directory/1%203/Active%20Directory%201%203/Secure/Sitecore_Active_Directory_Module_Guide_SC82.pdf) | How to install, configure, and use of the Active Directory module | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Campaign_Creator_module/10/Sitecore_Campaign_Creator_module/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Campaign_Creator_module/10/Sitecore_Campaign_Creator_module/Release_Notes.md deleted file mode 100644 index 9a0ebce11..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Campaign_Creator_module/10/Sitecore_Campaign_Creator_module/Release_Notes.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: "Release notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Campaign_Creator_module/10/Sitecore_Campaign_Creator_module/Release_Notes ---- - -## Campaign Creator - -The Sitecore Campaign Creator provides a simple and effective way for marketers to create new campaign activities and apply taxonomy in order classify campaign activities into larger campaign groups. You can: - -- Create new campaign activities and generate campaign tracking codes. -- Apply taxonomy facets for classification purposes. -- Search for campaigns by facet, date and name. -- Link to Experience Analytics for single campaign activity performance view -- Export lists of campaign activities. - -### Campaign Creator overview - -- Campaign Creator is available as an optional module to provide a user friendly interface to create, classify and search for campaigns, building on functionality currently found in the Marketing Control Panel. -- Campaign Creator also acts as an entry point to specific campaign activities in Experience Analytics, providing granular single campaign activity performance view. This replaces the Reports tab that was found in campaign items prior to Sitecore 8.0. -- Taxonomy that is defined in the Marketing Control can be used in Campaign Creator to organize campaign activities by facets, in line with the customer’s overall marketing strategy. -- Campaign Creator provides easy access to campaign codes so that marketers can differentiate and track all elements of their marketing mix to any desired degree of detail. - -### Campaign Creator features - -- The Campaign Creator generates campaign tracking codes that can be used to track external interactions, such as email campaigns or traffic coming from an external web source. This enables marketers to gather more detailed information about how effective various channels and campaign activities are at generating traffic and engagement value. -- The application provides a complete overview of campaign activities and is available from the Sitecore Launchpad. -- Users create and manage campaigns using the Campaign Creator without needing access to the Marketing Control Panel or the Content Editor. -- Campaign activities can be tagged with taxonomy facets for ease of access and organization. -- User can specify date and time that campaign activities are valid, plus provision for open ended campaign activities. -- User can select Engagement Plans for campaign activities. -- Facets and other attributes can be edited by the user when needed, even if campaign activity is active. -- Smart Panel provides a quick overview of campaign activity attributes and link to Experience Analytics. -- User can export lists of campaign activities in order to review usage of campaign groups, facets and campaign codes. -- Campaign Creator home page provides a single view of all campaign activities, with filters to provide a customized view in line with user needs. - - Filter by any combination of taxonomy facet (as defined in the Marketing Control Panel). - - Additional filtering by campaign activity name and validity dates. -- Campaign activities are automatically published upon creation. -- Campaign activities are automatically unpublished upon deletion. - -### Known Issues - -- The module release of Campaign Creator is in anticipation of its integration in the Sitecore Experience Platform in version 8.1. As such, developers should be aware that APIs used in the module will change, in line with upcoming improvements in the Marketing Foundation. -- When using Internet Explorer 10, a dialog may appear when selecting an Engagement Plan that allows the user to close the browser tab. User should select No to avoid tab closure, or use a different browser. (48238) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Campaign_Creator_module/10/Sitecore_Campaign_Creator_module/index.md b/apps/devportal/data/markdown/pages/downloads/Campaign_Creator_module/10/Sitecore_Campaign_Creator_module/index.md deleted file mode 100644 index dc5c084d2..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Campaign_Creator_module/10/Sitecore_Campaign_Creator_module/index.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "Sitecore Campaign Creator Module 1.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Campaign_Creator_module/10/Sitecore_Campaign_Creator_module.aspx ---- - -The Sitecore Campaign Creator provides a simple and effective way for marketers to create new campaign activities and apply taxonomy in order classify campaign activities into larger campaign groups. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Campaign Creator 1.0 rev. 150423](https://scdp.blob.core.windows.net/downloads/Campaign%20Creator%20module/10/Sitecore%20Campaign%20Creator%20module/Secure/Sitecore%20Campaign%20Manager%2010%20rev%20150423.zip) | Installation package for the Sitecore Campaign Creator module 1.0 Rev. 150423. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Campaign_Creator_module/10/Sitecore_Campaign_Creator_module/Release_Notes) | Release notes for the Sitecore Campaign Creator module 1.0 Rev. 150423. | - | [Documentation](https://doc.sitecore.net/products/sitecore%20experience%20platform/campaigns/configuring%20the%20campaign%20creator) | Link to documentation portal with all documentation for Sitecore Campaign Creator. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Campaign_Creator_module/index.md b/apps/devportal/data/markdown/pages/downloads/Campaign_Creator_module/index.md deleted file mode 100644 index 008a1fdaa..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Campaign_Creator_module/index.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "Campaign Creator module" -description: "Application for marketers to create and manage new campaign activities." -origin: https://dev.sitecore.net/Downloads/Campaign_Creator_module.aspx ---- - - - -## Campaign Creator module 1.0 - - -[Sitecore Campaign Creator Module 1.0](/downloads/Campaign_Creator_module/10/Sitecore_Campaign_Creator_module) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_10/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_10/Release_Notes.md deleted file mode 100644 index 571ec284d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_10/Release_Notes.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_10/Release_Notes ---- - -**June 2016 – released Data Exchange Framework 1.0.0 (rev. 160625)** - -This is the first release of a new product. - -## Highlights - -- Fully configurable synchronization processes and data mapping - -## Documentation - -- Documentation links are available on the [Downloads](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_10) page - -## System requirements - -- Sitecore Experience Platform 8.1 rev. 151207 (8.1 update-1) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_10/index.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_10/index.md deleted file mode 100644 index 1eadc222a..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_10/index.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Data Exchange Framework 1.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_10.aspx ---- - -Synchronize data between Sitecore and 3rd party systems. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.0](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%2010/Secure/Data%20Exchange%20Framework%201.0%20rev.%20160625.zip) | Data Exchange Framework provides the ability to define the synchronization processes and data mappings. | - | [Sitecore Provider for Data Exchange Framework 1.0](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%2010/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.0%20rev.%20160625.zip) | Provides the ability for Data Exchange Framework to interact with Sitecore items, marketing taxonomies and xDB. | - | [Data Exchange Framework Remote SDK 1.0](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%2010/Secure/Data%20Exchange%20Framework%20Remote%20SDK%201.0%20rev.%20160625.zip) | This file contains the libraries needed by non-Sitecore applications that need to interact with Data Exchange Framework components. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_10/Release_Notes) | Release notes for Data Exchange Framework. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.0 API Guide](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%2010/Secure/Sitecore.DataExchange.Documentation.chm) | API documentation for developers building custom components for Data Exchange Framework. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_11/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_11/Release_Notes.md deleted file mode 100644 index 7c94a5b69..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_11/Release_Notes.md +++ /dev/null @@ -1,55 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_11/Release_Notes ---- - -**August 2016 – released Data Exchange Framework 1.1.0 (rev. 160817)** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -## Highlights - -- Improved logging and troubleshooting features -- Improved performance and reliability for synchronization processes -- Bug fixes - -## Documentation - -- Documentation links are available on the [Downloads](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_11) page - -## System requirements - -- Sitecore Experience Platform 8.1 rev. 151207 (8.1 update-1) - -## New features & improvements - -- Added template for value reader that can read a value from an array based on the value's position in the array (117445) -- Added ability to limit the number of messages written to a pipeline batch (117447) -- Set the pipeline batch command to abort if the pipeline batch is already running to be the default value (117448) -- Added base template for value writers (117450) -- Refactored templates for pipeline steps that involve queues (117844) -- Added logging to the pipeline step Save Campaign (117846) -- Added templates for value writers (118718) -- Added support for non-string values in value reader for constant values (118719) -- Improved logging when value mappings fail (118899) -- Added ability to disable logging for telemetry in API (120032) -- Added event for activity start in base telemetry class (120033) -- Prevent multiple start and stop on telemetry (120034) - -## Breaking changes - -- The Scheduled message type has been removed (80584) - -## Deprecated and removed functionality - -- Removed Settings section from the Marketing Campaign Repository Endpoint template (117449) - -## Resolved issues - -The following issues have been resolved: - -- Value accessor for tenant name belongs in framework folder (118335) -- Inconsistent use of insert options across the framework and providers (120496) -- Inconsistent icons (120994) -- IterateAndRunPipelinesStepProcessor does not have IterableDataSettings as a require context pipeline plugin (121045) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_11/index.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_11/index.md deleted file mode 100644 index b52874fa3..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_11/index.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: "Data Exchange Framework 1.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_11.aspx ---- - -Synchronize data between Sitecore and 3rd party systems. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%2011/Secure/Data%20Exchange%20Framework%201.1.0%20rev.%20160817.zip) | Data Exchange Framework provides the ability to define the synchronization processes and data mappings. | - | [Sitecore Provider for Data Exchange Framework 1.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%2011/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.1.0%20rev.%20160817.zip) | Provides the ability for Data Exchange Framework to interact with Sitecore items, marketing taxonomies and xDB. | - | [Sitecore Provider for Data Exchange Framework 1.1 Hotfix 128342](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%2011/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.1.0%20rev.%20160817%20HF%20128342.zip) | This hotfix is needed if you intend to use the Sitecore provider with a Data Exchange Tenant that was created as an empty tenant. | - | [Data Exchange Framework Remote SDK 1.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%2011/Secure/Data%20Exchange%20Framework%20Remote%20SDK%201.1.0%20rev.%20160817.zip) | This file contains the libraries needed by non-Sitecore applications that need to interact with Data Exchange Framework components. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_11/Release_Notes) | Release notes for Data Exchange Framework. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.1 Developer Guide](https://doc.sitecore.com/developers/def/v1.1/) | Developer guide for working with Data Exchange Framework, including how to build custom providers. | - | [Data Exchange Framework 1.1 API Guide](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%2011/Secure/SitecoreDataExchangeAPI%20Documentation11.chm) | API documentation for developers building custom components for Data Exchange Framework. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_2/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_2/Release_Notes.md deleted file mode 100644 index 40c6158b3..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_2/Release_Notes.md +++ /dev/null @@ -1,60 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_2/Release_Notes ---- - -**December 2016 – released Data Exchange Framework 1.2.0 (rev. 161212)** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -Details on these changes are included in the product documentation, available on the [Downloads](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_2) page. - -## Highlights - -- Improved logging and troubleshooting features -- Improved performance and and control over synchronization processes -- Bug fixes -- Support for Sitecore on Azure - -## Documentation - -- Documentation links are available on the [Downloads](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_2) page - -## System requirements - -- Sitecore Experience Platform 8.1 rev. 151207 (8.1 update-1) or later - -## New features & improvements - -- Ability to specify actions when mappings are applied (127883) -- Apply mapping rule to ensure the source and target objects are different -- Stop a pipeline batch that is running (126536) -- Prevent a pipeline batch from running multiple times concurrently (108200) -- Ability to specify destination for iterated data -- Context awareness to apply mapping rule -- Collection for ignored mappings on mapping context -- Tenant repository -- Extended Data Exchange Framework context -- Ability to specify repository object status -- Ability to associate metadata with work queue entries -- Async support in a variety of APIs -- Support for bulk Sitecore campaign updates -- Ability to read multiple items from a Sitecore database -- Support for bulk CRM entity updates - -## Breaking changes - -- The Scheduled message type has been removed (80584) - -## Deprecated and removed functionality - -- IPipelineBatchRepository has been replaced with ITenantRepository -- SitecorePipelineBatchRepository has been replaced with SitecoreTenantRepository - -## Resolved issues - -The following issues have been resolved: - -- Pipeline batch summary values are not set when using the remote API to run the pipeline batch (122300) -- Marketing list conditions break the Sitecore Rules Editor when the tenant name includes a dash (122555) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_2/index.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_2/index.md deleted file mode 100644 index 9fea27e03..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_2/index.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: "Data Exchange Framework 1.2" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_2.aspx ---- - -Synchronize data between Sitecore and 3rd party systems. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.2](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%202/Secure/Data%20Exchange%20Framework%201.2.0%20rev.%20161212.zip) | Data Exchange Framework provides the ability to define the synchronization processes and data mappings. | - | [Sitecore Provider for Data Exchange Framework 1.2](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%202/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.2.0%20rev.%20161212.zip) | Provides the ability for Data Exchange Framework to interact with Sitecore items, marketing taxonomies and xDB. | - | [Data Exchange Framework Remote SDK 1.2](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%202/Secure/Data%20Exchange%20Framework%20Remote%20SDK%201.2.0%20rev.%20161212.zip) | This file contains the libraries needed by non-Sitecore applications that need to interact with Data Exchange Framework components. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.2 Update Package](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%202/Secure/Data%20Exchange%20Framework%201.2.0%20rev.%20161212%20update.update) | Update package you need to upgrade from DEF 1.1 initial to DEF 1.2 initial. | - | [Sitecore Provider for Data Exchange Framework 1.2 Update Package](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%202/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.2.0%20rev.%20161212%20update.update) | Update package you need to upgrade from Sitecore Provider for DEF 1.1 initial to Sitecore Provider for DEF 1.2 initial. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_2/Release_Notes) | Release notes for Data Exchange Framework | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.2 Guide](https://doc.sitecore.com/developers/def/v1.2/) | Guide for working with Data Exchange Framework, including:- Using the framework
- Building custom providers
- Developing with the remote SDK
- Component reference | - | [Data Exchange Framework 1.2 API Guide](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%202/Secure/SitecoreDataExchangeAPIDocumentation%2012.chm) | API documentation for developers building custom components for Data Exchange Framework. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_3/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_3/Release_Notes.md deleted file mode 100644 index b5195d189..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_3/Release_Notes.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_3/Release_Notes ---- - -**February 2017 – released Data Exchange Framework 1.3.0 (rev. 170206)** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -Details on these changes are included in the product documentation, available on the [Downloads](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_3) page. - -## Highlights - -- Improved control over work queue processing -- Improved feedback when stopping pipeline batch that is running -- Added support for multiple languages when working with Sitecore items -- Bug fixes - -## Documentation - -- Documentation links are available on the [Downloads](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_3) page - -## System requirements - -- Sitecore Experience Platform 8.1 rev. 151207 (8.1 update-1) or later - -## New features & improvements - -- Improved Item Model Repository functionality -- Action for insert option rules that adds children as insert options - -## Breaking changes - -- Added support for language and versions on IItemModelRepository -- Overloaded method for creating new items on IItemModelRepository -- Added virtual method on InProcItemModelRepository that determines whether or not Sitecore is running in the cloud -- Added async support on ITenantRepository -- Renamed namespace from Sitecore.DataExchange.Providers.Sc.Local.ApplyMappingActions to Sitecore.DataExchange.Providers.Sc.Local.MappingsAppliedActions - -## Deprecated and removed functionality - -- Marked interface IDataChanged obsolete -- Renamed namespace Sitecore.DataExchange.ApplyMappingActions to Sitecore.DataExchange.MappingsAppliedActions -- Renamed namespace Sitecore.DataExchange.DataAccess.ApplyMappingActions to Sitecore.DataExchange.DataAccess.MappingsAppliedActions - -## Resolved issues - -The following issues have been resolved: - -- Incorrect encoding used in WebApiItemModelRepository (142680) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_3/index.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_3/index.md deleted file mode 100644 index 44a483462..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_3/index.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: "Data Exchange Framework 1.3" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_3.aspx ---- - -Synchronize data between Sitecore and 3rd party systems. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.3](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%203/Secure/Data%20Exchange%20Framework%201.3.0%20rev.%20170210.zip) | Data Exchange Framework provides the ability to define the synchronization processes and data mappings. | - | [Sitecore Provider for Data Exchange Framework 1.3](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%203/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.3.0%20rev.%20170210.zip) | Provides the ability for Data Exchange Framework to interact with Sitecore items, marketing taxonomies and xDB. | - | [Data Exchange Framework Remote SDK 1.3](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%203/Secure/Data%20Exchange%20Framework%20Remote%20SDK%201.3.0.zip) | This file contains the libraries needed by non-Sitecore applications that need to interact with Data Exchange Framework components. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.3 Update Package](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%203/Secure/Data%20Exchange%20Framework%201.3.0%20rev.%20170210%20update.update) | Update package you need to upgrade from DEF 1.2 initial to DEF 1.3 initial. | - | [Sitecore Provider for Data Exchange Framework 1.3 Update Package](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%203/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.3.0%20rev.%20170210%20update.update) | Update package you need to upgrade from Sitecore Provider for DEF 1.2 initial to Sitecore Provider for DEF 1.3 initial. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_3/Release_Notes) | Release notes for Data Exchange Framework | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.3 Developer Guide](https://doc.sitecore.com/developers/def/v1.3/) | Developer guide for working with Data Exchange Framework, including how to build custom providers. | - | [Data Exchange Framework 1.3 API Guide](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%203/Secure/SitecoreDataExchangeAPIDocumentation13.chm) | API documentation for developers building custom components for Data Exchange Framework. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4/Release_Notes.md deleted file mode 100644 index 36d98af74..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4/Release_Notes.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4/Release_Notes ---- - -**April 2017 – released Data Exchange Framework 1.4.0 (rev. 170419)** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -Details on these changes are included in the product documentation, available on the [Downloads](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4) page. - -## Highlights - -- Usability enhancements -- Work queue enhancements -- Value mapping enhancements -- SDK for provider developers -- Bug fixes - -## Documentation - -- Documentation links are available on the [Downloads](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4) page - -## System requirements - -- Sitecore Experience Platform 8.1 rev. 151207 (8.1 update-1) or later - -## New features & improvements - -- Rules can be configured that determine whether or not a "mappings applied action" is run -- Ability to view and clear work queue entries to improve the ability for administrators to troubleshoot problems -- SDK for developers who want to build providers - -## Breaking changes - -- Simplified work queue APIs -- "Delta settings" feature moved from Dynamics CRM Provider to framework -- Simplified interface for BaseItemModelConverter - -## Deprecated and removed functionality - -- Removed interface IDataChanged - -## Resolved issues - -The following issues have been resolved: - -- InProcItemModelRepository does not convert ItemModel fields to string before writing to Sitecore. (153559) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4/index.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4/index.md deleted file mode 100644 index 46737e72b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4/index.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: "Data Exchange Framework 1.4" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4.aspx ---- - -Synchronize data between Sitecore and 3rd party systems. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.4](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204/Secure/Data%20Exchange%20Framework%201.4.0%20rev.%20170419.zip) | Data Exchange Framework provides the ability to define the synchronization processes and data mappings. | - | [Sitecore Provider for Data Exchange Framework 1.4](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.4.0%20rev.%20170419.zip) | Provides the ability for Data Exchange Framework to interact with Sitecore items, marketing taxonomies and xDB. | - | [Sitecore Provider for Data Exchange Framework 1.4 HF 185470](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.4.0%20rev.%20170419%20HF%20185470.zip) | Fixes some of the command templates included in the Sitecore Provider for Data Exchange Framework.Install this package after the Sitecore Provider for Data Exchange Framework package is installed. When prompted, overwrite existing items. | - | [Data Exchange Framework SDK 1.4](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204/Secure/Data%20Exchange%20Framework%20SDK%201.4.0%20rev.%20170419.zip) | Tools for developers who build and maintain providers for Data Exchange Framework. | - | [Data Exchange Framework Remote SDK 1.4](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204/Secure/Data%20Exchange%20Framework%20Remote%20SDK%201.4.0%20rev.%20170419.zip) | This file contains the libraries needed by non-Sitecore applications that need to interact with Data Exchange Framework components. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.4 Update Package](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204/Secure/Data%20Exchange%20Framework%201.4.0%20rev.%20170419%20update.update) | Update package you need to upgrade from DEF 1.3 initial to DEF 1.4 initial. | - | [Sitecore Provider for Data Exchange Framework 1.4 Update Package](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.4.0%20rev.%20170419%20update.update) | Update package you need to upgrade from Sitecore Provider for DEF 1.3 initial to Sitecore Provider for DEF 1.4 initial. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4/Release_Notes) | Release notes for Data Exchange Framework | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204/Secure/Installation%20Guide%20Data%20Exchange%20Framework%2014a4.pdf) | The installation and configuration procedure for the Data Exchange Framework. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.4 Developer Guide](https://doc.sitecore.com/developers/def/v1.4/) | Developer guide for working with Data Exchange Framework, including how to build custom providers. | - | [Data Exchange Framework 1.4 API Guide](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204/Secure/SitecoreDataExchangeAPIDocumentation14.chm) | API documentation for developers building custom components for Data Exchange Framework. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4_1/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4_1/Release_Notes.md deleted file mode 100644 index edafb5915..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4_1/Release_Notes.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4_1/Release_Notes ---- - -**August 2017 – released Data Exchange Framework 1.4.1 (rev. 170818)** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -Details on these changes are included in the product documentation, available on the [Downloads](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4_1) page. - -## Highlights - -- Usability enhancements -- Work queue enhancements -- Value mapping enhancements -- SDK for provider developers -- Bug fixes - -## Documentation - -- Documentation links are available on the [Downloads](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4_1) page - -## System requirements - -- Sitecore Experience Platform 8.1 rev. 151207 (8.1 update-1) or later - -## New features & improvements - -- Rules can be configured that determine whether or not a "mappings applied action" is run -- Ability to view and clear work queue entries to improve the ability for administrators to troubleshoot problems -- SDK for developers who want to build providers - -## Breaking changes - -- Simplified work queue APIs -- "Delta settings" feature moved from Dynamics CRM Provider to framework -- Simplified interface for BaseItemModelConverter - -## Deprecated and removed functionality - -- Removed interface IDataChanged - -## Resolved issues - -The following issues have been resolved: - -- InProcItemModelRepository does not convert ItemModel fields to string before writing to Sitecore. (153559) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4_1/index.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4_1/index.md deleted file mode 100644 index e6efa7e34..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4_1/index.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: "Data Exchange Framework 1.4.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4_1.aspx ---- - -Synchronize data between Sitecore and 3rd party systems. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.4.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204%201/Secure/Data%20Exchange%20Framework%201.4.1%20rev.%20170818.zip) | Data Exchange Framework provides the ability to define the synchronization processes and data mappings. | - | [Sitecore Provider for Data Exchange Framework 1.4.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204%201/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.4.1%20rev.%20170818.zip) | Provides the ability for Data Exchange Framework to interact with Sitecore items, marketing taxonomies and xDB. | - | [Sitecore Provider for Data Exchange Framework 1.4.1 HF 185470](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204%201/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.4.1%20rev.%20170804%20HF%20185470.zip) | Fixes some of the command templates included in the Sitecore Provider for Data Exchange Framework.Install this package after the Sitecore Provider for Data Exchange Framework package is installed. When prompted, overwrite existing items. | - | [Data Exchange Framework Uninstaller 1.x](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204%201/Secure/Data%20Exchange%20Framework%20Uninstaller%201.x%20rev.%20171201.zip) | This package includes an uninstaller for Data Exchange Framework 1.x. It removes DEF and any Sitecore supported providers and tools. | - | [Data Exchange Framework SDK 1.4.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204%201/Secure/Data%20Exchange%20Framework%20SDK%201.4.1%20rev.%20170818.zip) | Tools for developers who build and maintain providers for Data Exchange Framework. | - | [Data Exchange Framework Remote SDK 1.4.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204%201/Secure/Data%20Exchange%20Framework%20Remote%20SDK%201.4.1%20rev.%20170818.zip) | This file contains the libraries needed by non-Sitecore applications that need to interact with Data Exchange Framework components. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.4.1 Update Package](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204%201/Secure/Data%20Exchange%20Framework%201.4.1%20rev.%20170818%20update.update) | Update package you need to upgrade from Data Exchange Framework 1.4.0 rev. 170419 to 1.4.1 rev. 170818. | - | [Data Exchange Framework SDK 1.4.1 Update Package](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204%201/Secure/Data%20Exchange%20Framework%20SDK%201.4.1%20rev.%20170818%20update.update) | Update package you need to upgrade from Data Exchange Framework SDK 1.4.0 rev. 170419 to 1.4.1 rev. 170818. | - | [Sitecore Provider for Data Exchange Framework 1.4.1 Update Package](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204%201/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.4.1%20rev.%20170818%20update.update) | Update package you need to upgrade from Sitecore Provider for Data Exchange Framework from 1.4.0 rev. 170419 to 1.4.1 rev. 170818. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4_1/Release_Notes) | Release notes for Data Exchange Framework | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204/Secure/Installation%20Guide%20Data%20Exchange%20Framework%2014a4.pdf) | The installation and configuration procedure for the Data Exchange Framework. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.4.1 Developer Guide](https://doc.sitecore.com/developers/def/v1.4.1/) | Developer guide for working with Data Exchange Framework, including how to build custom providers. | - | [Data Exchange Framework 1.4.1 API Guide](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204/Secure/SitecoreDataExchangeAPIDocumentation14.chm) | API documentation for developers building custom components for Data Exchange Framework. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_20/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_20/Release_Notes.md deleted file mode 100644 index dce682f11..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_20/Release_Notes.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_20/Release_Notes ---- - -**October 2017 – released Sitecore Data Exchange Framework 2.0 (rev. 171013)** - -This is the first release of a new product. - -## Highlights - -- Support for Sitecore 9.0. -- Many performance and API improvements. - -## Documentation - -- Documentation links are available on the [Downloads](/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_20) page - -## System requirements - -- Sitecore Experience Platform 9.0 rev. 171002 (9.0 initial release) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_20/index.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_20/index.md deleted file mode 100644 index 702454f8b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_20/index.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: "Data Exchange Framework 2.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_20.aspx ---- - -Synchronize data between Sitecore and 3rd party systems. - - - - Data Exchange Framework version 2.0 requires Sitecore Experience Platform version 9.0. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 2.0](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%202.0/Secure/Data%20Exchange%20Framework%202.0.0%20rev.%20171013.zip) | Sitecore Data Exchange Framework provides the ability to define the synchronization processes and data mappings. It also provides the ability to run those processes. | - | [Data Exchange Framework Remote SDK 2.0](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%202.0/Secure/Data%20Exchange%20Framework%20Remote%20SDK%202.0.0%20rev.%20171013.zip) | Sitecore Data Exchange Framework Remote SDK provides the ability for client applications running outside of a Sitecore server to execute data synchronization processes created using Sitecore Data Exchange Framework. | - | [Data Exchange Framework SDK 2.0](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%202.0/Secure/Data%20Exchange%20Framework%20SDK%202.0.0%20rev.%20171013.zip) | Sitecore Data Exchange Framework SDK provides tools used to create custom providers for Sitecore Data Exchange Framework. It also provides tools used to upgrade existing DEF configurations when new versions of DEF or providers are available. | - | [Sitecore Provider for Data Exchange Framework 2.0](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%202.0/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%202.0.0%20rev.%20171013.zip) | Provides the ability to read and write items to Sitecore content databases. | - | [SQL Provider for Data Exchange Framework 2.0](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%202.0/Secure/SQL%20Provider%20for%20Data%20Exchange%20Framework%202.0.0%20rev.%20171013.zip) | Provides the ability to read and write to databases that can be accessed using ADO.NET. It also provides the ability to run stored procedures on those databases. | - | [Verification Database for Data Exchange Framework 2.0](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%202.0/Secure/Sitecore.DataExchange.Verification.dacpac) | Dacpac used to deploy the (optional) verification database.While the verification database is an optional component of Sitecore Data Exchange Framework, if the verification database is not installed, the verification features will be unavailable. | - | [xConnect Provider for Data Exchange Framework 2.0](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%202.0/Secure/xConnect%20Provider%20for%20Data%20Exchange%20Framework%202.0.0%20rev.%20171013.zip) | Provides the ability to read and write data to the collection and reference data services of Sitecore xConnect. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_20/Release_Notes) | Release notes for Data Exchange Framework. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20201/Secure/Data_Exchange_Framework_2_0_1_Installation_Guide-en.pdf) | The installation and configuration procedure for the Data Exchange Framework. | - | [Documentation](https://doc.sitecore.com/developers/def/20/data-exchange-framework/en/data-exchange-framework.html) | The Sitecore Developer Center has all of the documentation for Sitecore Data Exchange Framework. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_201/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_201/Release_Notes.md deleted file mode 100644 index f5c3dc03b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_201/Release_Notes.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_201/Release_Notes ---- - -**January 2018 – released Sitecore Data Exchange Framework 2.0.1 (rev. 180108)** - -This is an update release. - -## Highlights - -- Support for Sitecore 9.0.1. -- Many performance and API improvements. - -## Documentation - -- Documentation links are available on the [Downloads](/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_201) page - -## System requirements - -- Sitecore Experience Platform 9.0 rev. 171219 (9.0 Update-1) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_201/index.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_201/index.md deleted file mode 100644 index e88a6e70b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_201/index.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -title: "Data Exchange Framework 2.0.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_201.aspx ---- - -Synchronize data between Sitecore and 3rd party systems. - - - - Data Exchange Framework version 2.0.1 requires Sitecore Experience Platform version 9.0 update 1 or 9.0 update 2. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20201/Secure/install/Data%20Exchange%20Framework%202.0.1%20rev.%20180108.zip) | Sitecore Data Exchange Framework provides the ability to define the synchronization processes and data mappings. It also provides the ability to run those processes. | - | [Data Exchange Framework SDK 2.0.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20201/Secure/install/Data%20Exchange%20Framework%20SDK%202.0.1%20rev.%20180108.zip) | Sitecore Data Exchange Framework SDK provides tools used to create custom providers for Sitecore Data Exchange Framework. It also provides tools used to upgrade existing DEF configurations when new versions of DEF or providers are available. | - | [Data Exchange Framework Remote SDK 2.0.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20201/Secure/Data%20Exchange%20Framework%20Remote%20SDK%202.0.1%20rev.%20180108.zip) | Sitecore Data Exchange Framework Remote SDK provides the ability for client applications running outside of a Sitecore server to execute data synchronization processes created using Sitecore Data Exchange Framework. | - | [Verification Database for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20201/Secure/Sitecore.DataExchange.Verification.dacpac) | Dacpac used to deploy the (optional) verification database.While the verification database is an optional component of Sitecore Data Exchange Framework, if the verification database is not installed, the verification features will be unavailable. | - -## Providers - - | Resource | Description | - | --- | --- | - | [Sitecore Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20201/Secure/install/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%202.0.1%20rev.%20180108.zip) | Provides the ability to read and write items to Sitecore content databases. | - | [SQL Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20201/Secure/install/SQL%20Provider%20for%20Data%20Exchange%20Framework%202.0.1%20rev.%20180108.zip) | Provides the ability to read and write to databases that can be accessed using ADO.NET. It also provides the ability to run stored procedures on those databases. | - | [xConnect Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20201/Secure/install/xConnect%20Provider%20for%20Data%20Exchange%20Framework%202.0.1%20rev.%20180108.zip) | Provides the ability to read and write data to the collection and reference data services of Sitecore xConnect. | - -## CD Server Files - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 2.0.1 CD server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20201/Secure/install/cdserver/Data%20Exchange%20Framework%20CD%20Server%202.0.1%20rev.%20180108.zip) | Sitecore Data Exchange Framework installation package for content delivery (CD) servers. | - | [Sitecore Provider for Data Exchange Framework 2.0.1 CD server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20201/Secure/install/cdserver/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.0.1%20rev.%20180108.zip) | Sitecore provider installation package for content delivery (CD) servers. | - | [SQL Provider for Data Exchange Framework 2.0.1 CD server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20201/Secure/install/cdserver/SQL%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.0.1%20rev.%20180108.zip) | SQL provider installation package for content delivery (CD) servers. | - | [xConnect Provider for Data Exchange Framework 2.0.1 CD server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20201/Secure/install/cdserver/xConnect%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.0.1%20rev.%20180108.zip) | xConnect provider installation package for content delivery (CD) servers. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20201/Secure/update/Data%20Exchange%20Framework%202.0.1.update) | Update package you need to upgrade from Data Exchange Framework 2.0.0 rev. 171013 to 2.0.1 rev. 180108. | - | [Update Package for Sitecore Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20201/Secure/update/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%202.0.1.update) | Update package you need to upgrade from Sitecore Provider for Data Exchange Framework 2.0.0 rev. 171013 to 2.0.1 rev. 180108. | - | [Update Package for SQL Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20201/Secure/update/SQL%20Provider%20for%20Data%20Exchange%20Framework%202.0.1.update) | Update package you need to upgrade from SQL Provider for Data Exchange Framework 2.0.0 rev. 171013 to 2.0.1 rev. 180108. | - | [Update Package for xConnect Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20201/Secure/update/xConnect%20Provider%20for%20Data%20Exchange%20Framework%202.0.1.update) | Update package you need to upgrade from xConnect Provider for Data Exchange Framework 2.0.0 rev. 171013 to 2.0.1 rev. 180108. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_201/Release_Notes) | Release notes for Data Exchange Framework. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20201/Secure/Data_Exchange_Framework_2_0_1_Installation_Guide-en.pdf) | The installation and configuration procedure for the Data Exchange Framework. | - | [Documentation](https://doc.sitecore.com/developers/def/20/data-exchange-framework/en/data-exchange-framework.html) | The Sitecore documentation website with Sitecore Data Exchange Framework documentation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_210/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_210/Release_Notes.md deleted file mode 100644 index a74ec37dd..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_210/Release_Notes.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_210/Release_Notes ---- - -**November 2018 – released xDB Data Exchange framework 2.1.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​Support for Sitecore XP 9.1. | | | - | External systems can now send push notifications to the Data Exchange Framework to trigger a pipeline batch​. | | | - | ​​​​You can now segment users in list manager based on membership of a marketing list in Microsoft Dynamics. | | | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​​The ID table is used inefficiently in the XConnect data provider​. | 512727 | 234453 | - | The `ResolveMultilanguageSitecoreItemDictionaryPipelineStep` processor ignores the value in the `Parent For Item Location` field​.​​​ | 510391, 510813 | 227828 | - | ​The Web Forms For Marketers `Submit Success Event` event isn't migrated correctly by thhe xDB Data Migration Tool.​​​ | 499352 | 201454 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_210/index.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_210/index.md deleted file mode 100644 index c27727c56..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_210/index.md +++ /dev/null @@ -1,81 +0,0 @@ ---- -title: "Data Exchange Framework 2.1.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_210.aspx ---- - -Synchronize data between Sitecore and 3rd party systems. - - - - Data Exchange Framework version 2.1.0 requires Sitecore Experience Platform version 9.1. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Data%20Exchange%20Framework%202.1.0%20rev.%20181113.zip) | Sitecore Data Exchange Framework provides the ability to define the synchronization processes and data mappings. It also provides the ability to run those processes. | - | [Data Exchange Framework SDK](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Data%20Exchange%20Framework%20SDK%202.1.0%20rev.%20181113.zip) | Sitecore Data Exchange Framework SDK provides tools used to create custom providers for Sitecore Data Exchange Framework. It also provides tools used to upgrade existing DEF configurations when new versions of DEF or providers are available. | - | [Data Exchange Framework Remote SDK](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Data%20Exchange%20Framework%20Remote%20SDK%202.1.0%20rev.%20181113.zip) | Sitecore Data Exchange Framework Remote SDK provides the ability for client applications running outside of a Sitecore server to execute data synchronization processes created using Sitecore Data Exchange Framework. | - | [Verification Database for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Sitecore.DataExchange.Verification.dacpac) | Dacpac used to deploy the (optional) verification database.While the verification database is an optional component of Sitecore Data Exchange Framework, if the verification database is not installed, the verification features will be unavailable. | - | [Sitecore Data Exchange Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Sitecore%20DataExchange%20TenantService%202.1.0%20rev.%20181113.zip) | Sitecore Data Exchange Framework Tenant Service provides the ability to trigger synchronization process via web based push notifications. | - | [Data Exchange Framework Activity for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Data%20Exchange%20Framework%20Activity%20for%20Marketing%20Automation%202.1.0%20rev.%20181113.zip) | Sitecore Data Exchange Framework Activity for Marketing Automation allows for the triggering of synchronization from within a Marketing Automation plan. | - | [Data Exchange Framework Save Action for Experience Forms](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Data%20Exchange%20Framework%20Save%20Action%20for%20Experience%20Forms%202.1.0%20rev.%20181113.zip) | Sitecore Data Exchange Save Action for Experience Forms allows for the triggering of synchronization when a from is submitted. | - -## Tenant Service - - | Resource | Description | - | --- | --- | - | [AppInsights logger for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/AppInsights%20Logging%20for%20Tenant%20Service%20210%20rev%20181113scwdp.zip) | Provides an ability of Application Insights logging for Tenant Service. | - | [Experience Forms Provider for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Experience%20Forms%20Provider%20for%20Tenant%20Service%20210%20rev%20181113scwdp.zip) | Provides an ability to trigger DEF Save Action for Experience Forms on the Tenant Service. | - | [Marketing Automation Extension for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Marketing%20Automation%20Extension%20for%20Tenant%20Service%20210%20rev%20181113scwdp.zip) | Provides an ability to trigger DEF Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - | [MongoDB Provider for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/MongoDB%20Provider%20for%20Tenant%20Service%20210%20rev%20181113scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage MongoDB data on the Tenant Service or to work with MongoDB as an endpoint. | - | [SIF installation scripts for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/SIFInstallationScriptsforTenantService.zip) | Provides an ability to install Tenant Service using Sitecore Installation Framework. | - | [Sitecore Data Exchange Framework Plugin for Automation Engine role](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/DEF%20Action%20Plugin%20for%20Marketing%20Automation%20210%20rev%20181113scwdp.zip) | Provides an ability to trigger DEF Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - | [Sitecore Data Exchange Framework Tenant Service - Web Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Sitecore%20Data%20Exchange%20Framework%20Tenant%20Service%20210%20rev%20181113scwdp.zip) | Sitecore Data Exchange Framework Tenant Service – a web service that provides the ability to trigger synchronization process via web based push notifications. | - | [Sitecore Provider for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Sitecore%20Provider%20for%20Tenant%20Service%20210%20rev%20181113scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Sitecore content items on the Tenant Service. | - | [SQL Provider for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/SQL%20Provider%20for%20Tenant%20Service%20210%20rev%20181113scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage SQL server data on the Tenant Service or to work with SQL server as an endpoint. | - | [Tenant Service ARM templates](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/AzureArmTemplatesforTenantServiceInstallation.zip) | Provides an ability to create an appropriate Azure infrastructure and install Tenant Service there. | - | [xConnect Provider for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/xConnect%20Provider%20for%20Tenant%20Service%20210%20rev%20181113scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage xConnect data on the Tenant Service or to work with xConnect client as an endpoint. | - -## Providers - - | Resource | Description | - | --- | --- | - | [Sitecore Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%202.1.0%20rev.%20181113.zip) | Provides the ability to read and write items to Sitecore content databases. | - | [SQL Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/SQL%20Provider%20for%20Data%20Exchange%20Framework%202.1.0%20rev.%20181113.zip) | Provides the ability to read and write to databases that can be accessed using ADO.NET. It also provides the ability to run stored procedures on those databases. | - | [xConnect Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/XConnect%20Provider%20for%20Data%20Exchange%20Framework%202.1.0%20rev.%20181113.zip) | Provides the ability to read and write data to the collection and reference data services of Sitecore xConnect. | - | [Experience Forms Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Experience%20Forms%20Provider%20for%20Data%20Exchange%20Framework%202.1.0%20rev.%20181113.zip) | Provide the ability to read forms relate data. | - -## CD Server Files - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework CD server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Data%20Exchange%20Framework%20CD%20Server%202.1.0%20rev.%20181113.zip) | Sitecore Data Exchange Framework installation package for content delivery (CD) servers. | - | [Sitecore Provider for Data Exchange Framework CD server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.1.0%20rev.%20181113.zip) | Sitecore provider installation package for content delivery (CD) servers. | - | [SQL Provider for Data Exchange Framework CD server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/SQL%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.1.0%20rev.%20181113.zip) | SQL provider installation package for content delivery (CD) servers. | - | [xConnect Provider for Data Exchange Framework CD server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/XConnect%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.1.0%20rev.%20181113.zip) | xConnect provider installation package for content delivery (CD) servers. | - | [Sitecore DataExchange TenantService CD Server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Sitecore%20DataExchange%20TenantService%20CD%20Server%202.1.0%20rev.%20181113.zip) | Sitecore Data Exchange Framework Tenant Service package for content delivery (CD) servers. | - | [Data Exchange Framework Activity for Marketing Automation CD Server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Data%20Exchange%20Framework%20Activity%20for%20Marketing%20Automation%20CD%20Server%202.1.0%20rev.%20181113.zip) | Data Exchange Framework Activity for Marketing package for content delivery (CD) servers. | - | [Data Exchange Framework Save Action for Experience Forms CD Server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Data%20Exchange%20Framework%20Save%20Action%20for%20Experience%20Forms%20CD%20Server%202.1.0%20rev.%20181113.zip) | Data Exchange Framework Save Action for Experience Forms package for content delivery (CD) servers. | - | [Experience Forms Provider for Data Exchange Framework CD Server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Experience%20Forms%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.1.0%20rev.%20181113.zip) | Experience Forms Provider for Data Exchange Framework for content deliver (CD) servers. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Data%20Exchange%20Framework%202.1.0.update) | Update package you need to upgrade from Data Exchange Framework 2.0.1 to 2.1.0. | - | [Update Package for Sitecore Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%202.1.0.update) | Update package you need to upgrade from Sitecore Provider for Data Exchange Framework 2.0.1 to 2.1.0. | - | [Update Package for SQL Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/SQL%20Provider%20for%20Data%20Exchange%20Framework%202.1.0.update) | Update package you need to upgrade from SQL Provider for Data Exchange Framework 2.0.1 to 2.1.0. | - | [Update Package for xConnect Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/xConnect%20Provider%20for%20Data%20Exchange%20Framework%202.1.0.update) | Update package you need to upgrade from xConnect Provider for Data Exchange Framework 2.0.1 to 2.1.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_210/Release_Notes) | Release notes for Data Exchange Framework. | - | [Installation Guide for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Data_Exchange_Framework_2_1_Installation_Guide-en.pdf) | The installation and configuration procedure for the Data Exchange Framework. | - | [Installation Guide for Data Exchange Framework Save Action for Experience Forms](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/2x/Data%20Exchange%20Framework%20210/Secure/Data_Exchange_Framework_2_1_Save_Action_for_Experi-en.pdf) | The installation and configuration procedure for Data Exchange Framework Save Action for Experience Forms. | - | [Documentation](https://doc.sitecore.com/developers/def/21/data-exchange-framework/en/index-en.html) | The Sitecore documentation website with Sitecore Data Exchange Framework documentation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_300/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_300/Release_Notes.md deleted file mode 100644 index 1a8a67cfb..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_300/Release_Notes.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_300/Release_Notes ---- - -**September 2019 – released xDB Data Exchange Framework 3.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​Support for Sitecore XP 9.2.0. | | | - | The installation and upgrade process has been simplified by combining 5 packages into 1. | | | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Running Pipeline batches in multiple threads sometimes caused a `Collection was Modified` error | | 329706 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_300/index.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_300/index.md deleted file mode 100644 index 576a203ed..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_300/index.md +++ /dev/null @@ -1,69 +0,0 @@ ---- -title: "Data Exchange Framework 3.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_300.aspx ---- - -Synchronize data between Sitecore and 3rd party systems. - - - - Data Exchange Framework version 3.0.0 requires Sitecore Experience Platform version 9.2. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data%20Exchange%20Framework%203.0.0%20rev.%2001393.zip) | Sitecore Data Exchange Framework provides the ability to define the synchronization processes and data mappings. It also provides the ability to run those processes. | - | [Data Exchange Framework Activity for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data%20Exchange%20Framework%20Activity%20for%20Marketing%20Automation%203.0.0%20rev.%2001393.zip) | Sitecore Data Exchange Framework Activity for Marketing Automation allows for the triggering of synchronization from within a Marketing Automation plan. | - | [Data Exchange Framework Save Action for Experience Forms](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data%20Exchange%20Framework%20Save%20Action%20for%20Experience%20Forms%203.0.0%20rev.%2001393.zip) | Sitecore Data Exchange Save Action for Experience Forms allows for the triggering of synchronization when a from is submitted. | - | [Data Exchange Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Sitecore%20DataExchange%20TenantService%203.0.0%20rev.%2001393.zip) | Sitecore Data Exchange Framework Tenant Service provides the ability to trigger synchronization process via web based push notifications. | - -## Marketing Automation Plugins - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework Action Plugin for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Sitecore%20Data%20Exchange%20Framework%20Action%20Plugin%20for%20Marketing%20Automation%203.0.0%20rev.%2001393.zip) | Provides an ability to trigger DEF Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - -## Tenant Service - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework Tenant Web Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Sitecore%20Data%20Exchange%20Framework%20Tenant%20Web%20Service%203.0.0%20rev.%2001393.scwdp.zip) | Sitecore Data Exchange Framework Tenant Web Service – a web service that provides the ability to trigger synchronization process via web based push notifications. | - | [Data Exchange Framework Tenant Web Service Plugins](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Sitecore%20Data%20Exchange%20Framework%20Tenant%20Web%20Service%20Plugins%203.0.0%20rev.%2001393.scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Sitecore content items on the Tenant Service. | - | [Data Exchange Framework Tenant Web Service Plugin for Forms](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Sitecore%20Data%20Exchange%20Framework%20Tenant%20Web%20Service%20Plugin%20for%20Forms%203.0.0%20rev.%2001393.scwdp.zip) | Provides an ability to trigger DEF Save Action for Experience Forms on the Tenant Service. | - | [Data Exchange Framework Tenant Web Service Plugin for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Sitecore%20Data%20Exchange%20Framework%20Tenant%20Web%20Service%20Plugin%20for%20MA%203.0.0%20rev.%2001393.scwdp.zip) | Provides an ability to trigger DEF Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - | [AppInsights logger for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/AppInsights%20logger%20for%20Tenant%20Service%203.0.0%20rev.%2001393.scwdp.zip) | Provides an ability of Application Insights logging for Tenant Service. | - | [SIF installation scripts for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/SIFInstallationScriptsforTenantService.zip) | Provides an ability to install Tenant Service using Sitecore Installation Framework. | - -## CD Server Files - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework CD server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data%20Exchange%20Framework%20CD%20Server%203.0.0%20rev.%2001393.zip) | Sitecore Data Exchange Framework installation package for content delivery (CD) servers. | - | [Data Exchange Framework Save Action for Experience Forms CD Server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data%20Exchange%20Framework%20Save%20Action%20for%20Experience%20Forms%20CD%20Server%203.0.0%20rev.%2001393.zip) | Data Exchange Framework Save Action for Experience Forms package for content delivery (CD) servers. | - | [Data Exchange Tenant Service CD Server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Sitecore%20DataExchange%20TenantService%20CD%20Server%203.0.0%20rev.%2001393.zip) | Sitecore Data Exchange Framework Tenant Service package for content delivery (CD) servers. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data%20Exchange%20Framework%203.0.0%20rev.%2001393%20(update%20package).update) | Update package you need to upgrade from Sitecore Data Exchange Framework, Sitecore, xConnect, MongoDB and SQL Providers 2.1.0 to Sitecore Data Exchange Framework 3.0.0. | - | [Update Package for Data Exchange Framework CD server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data%20Exchange%20Framework%20CD%20Server%203.0.0%20rev.%2001393%20(update%20package).update) | Update package you need to upgrade from Sitecore Data Exchange Framework 2.1.0 to 3.0.0 for content delivery (CD) servers. | - | [Update Package for Data Exchange Framework Activity for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data%20Exchange%20Framework%20Activity%20for%20Marketing%20Automation%20(update%20package)%203.0.0%20rev.%2001393.update) | Update package you need to upgrade from Data Exchange Framework Activity for Marketing Automation 2.1.0 to 3.0.0. | - | [Update Package for Data Exchange Framework Save Action for Experience Forms](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data%20Exchange%20Framework%20Save%20Action%20for%20Experience%20Forms%20(update%20package)%203.0.0%20rev.%2001393.update) | Update package you need to upgrade from Data Exchange Framework Save Action for Experience Forms 2.1.0 to 3.0.0. | - | [Update Package for Data Exchange Framework Save Action for Experience Forms CD Server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data%20Exchange%20Framework%20Save%20Action%20for%20Experience%20Forms%20CD%20Server%20(update%20package)%203.0.0%20rev.%2001393.update) | Update package you need to upgrade from Data Exchange Framework Save Action for Experience Forms CD Server 2.1.0 to 3.0.0. | - | [Update Package for Data Exchange Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Sitecore%20DataExchange%20TenantService%20(update%20package)%203.0.0%20rev.%2001393.update) | Update package you need to upgrade from Data Exchange Tenant Service 2.1.0 to 3.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_300/Release_Notes) | Release notes for Data Exchange Framework. | - | [Installation Guide for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data_Exchange_Framework_3_0_Installation_Guide-en.pdf) | The installation and configuration procedure for the Data Exchange Framework. | - | [Installation Guide for Data Exchange Framework Activity for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data_Exchange_Framework_3_0_Activity_for_Marketing-en.pdf) | The installation and configuration procedure for Data Exchange Framework Activity for Marketing Automation. | - | [Installation Guide for Data Exchange Framework Save Action for Experience Forms](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data_Exchange_Framework_Save_Action_for_Experience-en.pdf) | The installation and configuration procedure for Data Exchange Framework Save Action for Experience Forms. | - | [Installation Guide for Data Exchange Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data_Exchange_Framework_Tenant_Service_3_0_Install-en.pdf) | The installation and configuration procedure for Sitecore Data Exchange Tenant Service. | - | [Documentation](https://doc.sitecore.com/developers/def/30/data-exchange-framework/en/index-en.html) | The Sitecore documentation website with Sitecore Data Exchange Framework documentation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_301/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_301/Release_Notes.md deleted file mode 100644 index cb190c176..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_301/Release_Notes.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_301/Release_Notes ---- - -**December 2019 – released xDB Data Exchange Framework 3.0.1** - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Cannot install the DEF 3.0.0 package from the Nuget feed because of a referencing issue. | 174968, 174370 | 371684 | - | When you use scheduled tasks to execute a pipeline batch, an error occurs. | 542596 | 366913 | - | No Delta Settings are available for xDB to CRM Synchronization. | 534640 | 340820 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_301/index.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_301/index.md deleted file mode 100644 index 5aab7f71d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_301/index.md +++ /dev/null @@ -1,69 +0,0 @@ ---- -title: "Data Exchange Framework 3.0.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_301.aspx ---- - -Synchronize data between Sitecore and 3rd party systems. - - - - Data Exchange Framework version 3.0.1 requires Sitecore Experience Platform version 9.2. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20301/Secure/Data%20Exchange%20Framework%203.0.1%20rev.%2001402.zip) | Sitecore Data Exchange Framework provides the ability to define the synchronization processes and data mappings. It also provides the ability to run those processes. | - | [Data Exchange Framework Activity for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data%20Exchange%20Framework%20Activity%20for%20Marketing%20Automation%203.0.0%20rev.%2001393.zip) | Sitecore Data Exchange Framework Activity for Marketing Automation allows for the triggering of synchronization from within a Marketing Automation plan. | - | [Data Exchange Framework Save Action for Experience Forms](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data%20Exchange%20Framework%20Save%20Action%20for%20Experience%20Forms%203.0.0%20rev.%2001393.zip) | Sitecore Data Exchange Save Action for Experience Forms allows for the triggering of synchronization when a from is submitted. | - | [Data Exchange Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20301/Secure/Sitecore%20DataExchange%20TenantService%203.0.1%20rev.%2001402.zip) | Sitecore Data Exchange Framework Tenant Service provides the ability to trigger synchronization process via web based push notifications. | - -## Marketing Automation Plugins - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework Action Plugin for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Sitecore%20Data%20Exchange%20Framework%20Action%20Plugin%20for%20Marketing%20Automation%203.0.0%20rev.%2001393.zip) | Provides an ability to trigger DEF Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - -## Tenant Service - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework Tenant Web Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20301/Secure/Sitecore%20Data%20Exchange%20Framework%20Tenant%20Web%20Service%203.0.1%20rev.%2001402.scwdp.zip) | Sitecore Data Exchange Framework Tenant Web Service – a web service that provides the ability to trigger synchronization process via web based push notifications. | - | [Data Exchange Framework Tenant Web Service Plugins](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20301/Secure/Sitecore%20Data%20Exchange%20Framework%20Tenant%20Web%20Service%20Plugins%203.0.1%20rev.%2001402.scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Sitecore content items on the Tenant Service. | - | [Data Exchange Framework Tenant Web Service Plugin for Forms](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Sitecore%20Data%20Exchange%20Framework%20Tenant%20Web%20Service%20Plugin%20for%20Forms%203.0.0%20rev.%2001393.scwdp.zip) | Provides an ability to trigger DEF Save Action for Experience Forms on the Tenant Service. | - | [Data Exchange Framework Tenant Web Service Plugin for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Sitecore%20Data%20Exchange%20Framework%20Tenant%20Web%20Service%20Plugin%20for%20MA%203.0.0%20rev.%2001393.scwdp.zip) | Provides an ability to trigger DEF Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - | [AppInsights logger for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/AppInsights%20logger%20for%20Tenant%20Service%203.0.0%20rev.%2001393.scwdp.zip) | Provides an ability of Application Insights logging for Tenant Service. | - | [SIF installation scripts for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20301/Secure/SIFInstallationScriptsforTenantService.zip) | Provides an ability to install Tenant Service using Sitecore Installation Framework. | - -## CD Server Files - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework CD server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20301/Secure/Data%20Exchange%20Framework%20CD%20Server%203.0.1%20rev.%2001402.zip) | Sitecore Data Exchange Framework installation package for content delivery (CD) servers. | - | [Data Exchange Framework Save Action for Experience Forms CD Server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data%20Exchange%20Framework%20Save%20Action%20for%20Experience%20Forms%20CD%20Server%203.0.0%20rev.%2001393.zip) | Data Exchange Framework Save Action for Experience Forms package for content delivery (CD) servers. | - | [Data Exchange Tenant Service CD Server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20301/Secure/Sitecore%20DataExchange%20TenantService%20CD%20Server%203.0.1%20rev.%2001402.zip) | Sitecore Data Exchange Framework Tenant Service package for content delivery (CD) servers. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20301/Secure/Data%20Exchange%20Framework%20(update%20package)%203.0.1%20rev.%2001402.update) | Update package you need to upgrade from Sitecore Data Exchange Framework, Sitecore, xConnect, MongoDB and SQL Providers 2.1.0 to Sitecore Data Exchange Framework 3.0.1. | - | [Update Package for Data Exchange Framework CD server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20301/Secure/Data%20Exchange%20Framework%20CD%20Server%20(update%20package)%203.0.1%20rev.%2001402.update) | Update package you need to upgrade from Sitecore Data Exchange Framework 2.1.0 to 3.0.1 for content delivery (CD) servers. | - | [Update Package for Data Exchange Framework Activity for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data%20Exchange%20Framework%20Activity%20for%20Marketing%20Automation%20(update%20package)%203.0.0%20rev.%2001393.update) | Update package you need to upgrade from Data Exchange Framework Activity for Marketing Automation 2.1.0 to 3.0.0. | - | [Update Package for Data Exchange Framework Save Action for Experience Forms](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data%20Exchange%20Framework%20Save%20Action%20for%20Experience%20Forms%20(update%20package)%203.0.0%20rev.%2001393.update) | Update package you need to upgrade from Data Exchange Framework Save Action for Experience Forms 2.1.0 to 3.0.0. | - | [Update Package for Data Exchange Framework Save Action for Experience Forms CD Server](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data%20Exchange%20Framework%20Save%20Action%20for%20Experience%20Forms%20CD%20Server%20(update%20package)%203.0.0%20rev.%2001393.update) | Update package you need to upgrade from Data Exchange Framework Save Action for Experience Forms CD Server 2.1.0 to 3.0.0. | - | [Update Package for Data Exchange Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20301/Secure/Sitecore%20DataExchange%20TenantService%20(update%20package)%203.0.1%20rev.%2001402.update) | Update package you need to upgrade from Data Exchange Tenant Service 2.1.0 to 3.0.1. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_301/Release_Notes) | Release notes for Data Exchange Framework. | - | [Installation Guide for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20301/Secure/Data_Exchange_Framework_3_0_1_Installation_Guide-en.pdf) | The installation and configuration procedure for the Data Exchange Framework. | - | [Installation Guide for Data Exchange Framework Activity for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data_Exchange_Framework_3_0_Activity_for_Marketing-en.pdf) | The installation and configuration procedure for Data Exchange Framework Activity for Marketing Automation. | - | [Installation Guide for Data Exchange Framework Save Action for Experience Forms](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20300/Secure/Data_Exchange_Framework_Save_Action_for_Experience-en.pdf) | The installation and configuration procedure for Data Exchange Framework Save Action for Experience Forms. | - | [Installation Guide for Data Exchange Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/3x/Data%20Exchange%20Framework%20301/Secure/Data_Exchange_Framework_3_0_1_Tenant_Service_Insta-en.pdf) | The installation and configuration procedure for Sitecore Data Exchange Tenant Service. | - | [Documentation](https://doc.sitecore.com/developers/def/30/data-exchange-framework/en/index-en.html) | The Sitecore documentation website with Sitecore Data Exchange Framework documentation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/4x/Data_Exchange_Framework_400/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/4x/Data_Exchange_Framework_400/Release_Notes.md deleted file mode 100644 index a6a90e313..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/4x/Data_Exchange_Framework_400/Release_Notes.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/4x/Data_Exchange_Framework_400/Release_Notes ---- - -**January 2020 – released xDB Data Exchange framework 4.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​Support for Sitecore XP 9.3.0. | | | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | When you use a scheduled task to execute a pipeline batch job, an error occurs. | 542596 | 366913 | - | There are no Delta Settings available for xDB to CRM Synchronization. | 534640 | 340820 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/4x/Data_Exchange_Framework_400/index.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/4x/Data_Exchange_Framework_400/index.md deleted file mode 100644 index 841d1b741..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/4x/Data_Exchange_Framework_400/index.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -title: "Data Exchange Framework 4.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/4x/Data_Exchange_Framework_400.aspx ---- - -Synchronize data between Sitecore and 3rd party systems. - - - - Data Exchange Framework version 4.0.0 requires Sitecore Experience Platform version 9.3. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/4x/Data%20Exchange%20Framework%20400/Secure/Data%20Exchange%20Framework%204.0.0%20rev.%2001437.zip) | Sitecore Data Exchange Framework provides the ability to define the synchronization processes and data mappings. It also provides the ability to run those processes. | - | [Data Exchange Framework Activity for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/4x/Data%20Exchange%20Framework%20400/Secure/Data%20Exchange%20Framework%20Activity%20for%20Marketing%20Automation%204.0.0%20rev.%2001437.zip) | Sitecore Data Exchange Framework Activity for Marketing Automation allows for the triggering of synchronization from within a Marketing Automation plan. | - | [Data Exchange Framework Save Action for Experience Forms](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/4x/Data%20Exchange%20Framework%20400/Secure/Data%20Exchange%20Framework%20Save%20Action%20for%20Experience%20Forms%204.0.0%20rev.%2001437.zip) | Sitecore Data Exchange Save Action for Experience Forms allows for the triggering of synchronization when a from is submitted. | - | [Data Exchange Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/4x/Data%20Exchange%20Framework%20400/Secure/Sitecore%20DataExchange%20TenantService%204.0.0%20rev.%2001437.zip) | Sitecore Data Exchange Framework Tenant Service provides the ability to trigger synchronization process via web based push notifications. | - -## Marketing Automation Plugins - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework Action Plugin for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/4x/Data%20Exchange%20Framework%20400/Secure/Sitecore%20Data%20Exchange%20Framework%20Action%20Plugin%20for%20Marketing%20Automation%204.0.0%20rev.%2001437.scwdp.zip) | Provides an ability to trigger DEF Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - -## Tenant Service - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework Tenant Web Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/4x/Data%20Exchange%20Framework%20400/Secure/Sitecore%20Data%20Exchange%20Framework%20Tenant%20Web%20Service%204.0.0%20rev.%2001437.scwdp.zip) | Sitecore Data Exchange Framework Tenant Web Service – a web service that provides the ability to trigger synchronization process via web based push notifications. | - | [AppInsights logger for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/4x/Data%20Exchange%20Framework%20400/Secure/AppInsights%20logger%20for%20Tenant%20Service%204.0.0%20rev.%2001437.scwdp.zip) | Provides an ability of Application Insights logging for Tenant Service. | - | [SIF installation scripts for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/4x/Data%20Exchange%20Framework%20400/Secure/SIFInstallationScriptsforTenantService.zip) | Provides an ability to install Tenant Service using Sitecore Installation Framework. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/4x/Data%20Exchange%20Framework%20400/Secure/Data%20Exchange%20Framework%20(update%20package)%204.0.0%20rev.%2001437.update) | Update package you need to upgrade from Sitecore Data Exchange Framework, Sitecore, xConnect, MongoDB and SQL Providers 3.0.1 to Sitecore Data Exchange Framework 4.0.0. | - | [Update Package for Data Exchange Framework Activity for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/4x/Data%20Exchange%20Framework%20400/Secure/Data%20Exchange%20Framework%20Activity%20for%20Marketing%20Automation%20(update%20package)%204.0.0%20rev.%2001437.update) | Update package you need to upgrade from Data Exchange Framework Activity for Marketing Automation 3.0.0 to 4.0.0. | - | [Update Package for Data Exchange Framework Save Action for Experience Forms](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/4x/Data%20Exchange%20Framework%20400/Secure/Data%20Exchange%20Framework%20Save%20Action%20for%20Experience%20Forms%20(update%20package)%204.0.0%20rev.%2001437.update) | Update package you need to upgrade from Data Exchange Framework Save Action for Experience Forms 3.0.0 to 4.0.0. | - | [Update Package for Data Exchange Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/4x/Data%20Exchange%20Framework%20400/Secure/Sitecore%20DataExchange%20TenantService%20(update%20package)%204.0.0%20rev.%2001437.update) | Update package you need to upgrade from Data Exchange Tenant Service 3.0.1 to 4.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Data_Exchange_Framework/4x/Data_Exchange_Framework_400/Release_Notes) | Release notes for Data Exchange Framework. | - | [Installation Guide for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/4x/Data%20Exchange%20Framework%20400/Secure/Data_Exchange_Framework_4_0_Installation_Guide-en.pdf) | The installation and configuration procedure for the Data Exchange Framework. | - | [Installation Guide for Data Exchange Framework Activity for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/4x/Data%20Exchange%20Framework%20400/Secure/Data_Exchange_Framework_4_0_Activity_for_Marketing-en.pdf) | The installation and configuration procedure for Data Exchange Framework Activity for Marketing Automation. | - | [Installation Guide for Data Exchange Framework Save Action for Experience Forms](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/4x/Data%20Exchange%20Framework%20400/Secure/Data_Exchange_Framework_4_0_Save_Action_for_Experi-en.pdf) | The installation and configuration procedure for Data Exchange Framework Save Action for Experience Forms. | - | [Installation Guide for Data Exchange Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/4x/Data%20Exchange%20Framework%20400/Secure/Data_Exchange_Framework_4_0_Tenant_Service_Install-en.pdf) | The installation and configuration procedure for Sitecore Data Exchange Tenant Service. | - | [Documentation](https://doc.sitecore.com/developers/def/40/data-exchange-framework/en/index-en.html) | The Sitecore documentation website with Sitecore Data Exchange Framework documentation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/5x/Data_Exchange_Framework_500/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/5x/Data_Exchange_Framework_500/Release_Notes.md deleted file mode 100644 index 8b4ef0ffd..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/5x/Data_Exchange_Framework_500/Release_Notes.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/5x/Data_Exchange_Framework_500/Release_Notes ---- - -**August 2020 – released xDB Data Exchange framework 5.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​Support for Sitecore XP 10.0.0. | | | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | The processor is not able to resolve more than 10 languages in the pipeline step. | CS0146078 | 256440 | - | The DEF messages use UTC time instead of server time. | CS0149765, CS0153043 | 296410 | - | The `ShowPipelineStatus` message is unable to show times that are greater than 24 hours. | CS0148490 | 293147 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/5x/Data_Exchange_Framework_500/index.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/5x/Data_Exchange_Framework_500/index.md deleted file mode 100644 index e121c80dd..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/5x/Data_Exchange_Framework_500/index.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: "Data Exchange Framework 5.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/5x/Data_Exchange_Framework_500 ---- - -The Data Exchange Framework enables synchronizing data between Sitecore XP and 3rd party systems.\ -Data Exchange Framework 5.0.0 is compatible with Sitecore XP 10.0. - -See [all available versions here](/downloads/Data_Exchange_Framework). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/5x/Data%20Exchange%20Framework%20500/Secure/Data%20Exchange%20Framework%205.0.0%20rev.%2001466.zip) | Sitecore Data Exchange Framework provides the ability to define the synchronization processes and data mappings. It also provides the ability to run those processes. | - -## Marketing Automation Plugins - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework Action Plugin for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/5x/Data%20Exchange%20Framework%20500/Secure/Sitecore%20Data%20Exchange%20Framework%20Action%20Plugin%20for%20Marketing%20Automation%205.0.0%20rev.%2001466.scwdp.zip) | Provides an ability to trigger DEF Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - -## Tenant Service - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework Tenant Web Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/5x/Data%20Exchange%20Framework%20500/Secure/Sitecore%20Data%20Exchange%20Framework%20Tenant%20Web%20Service%205.0.0%20rev.%2001466.scwdp.zip) | Sitecore Data Exchange Framework Tenant Web Service – a web service that provides the ability to trigger synchronization process via web based push notifications. | - | [AppInsights logger for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/5x/Data%20Exchange%20Framework%20500/Secure/AppInsights%20logger%20for%20Tenant%20Service%205.0.0%20rev.%2001466.scwdp.zip) | Provides an ability of Application Insights logging for Tenant Service. | - | [SIF installation scripts for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/5x/Data%20Exchange%20Framework%20500/Secure/SIFInstallationScriptsforTenantService.zip) | Provides an ability to install Tenant Service using Sitecore Installation Framework. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/5x/Data%20Exchange%20Framework%20500/Secure/Data%20Exchange%20Framework%20(update%20package)%205.0.0%20rev.%2001466.update) | Update package you need to upgrade from Sitecore Data Exchange Framework, Sitecore, xConnect, MongoDB and SQL Providers 4.0.0 to Sitecore Data Exchange Framework 5.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Data_Exchange_Framework/5x/Data_Exchange_Framework_500/Release_Notes) | Release notes for Data Exchange Framework. | - | [Installation Guide for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/5x/Data%20Exchange%20Framework%20500/Secure/Data_Exchange_Framework_5_0_Installation_Guide-en.pdf) | The installation and configuration procedure for the Data Exchange Framework. | - | [Installation Guide for Data Exchange Tenant Web Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/5x/Data%20Exchange%20Framework%20500/Secure/Data_Exchange_Framework_5_0_Tenant_Web_Service_Installation_Guide-en.pdf) | The installation and configuration procedure for Sitecore Data Exchange Tenant Web Service. | - | [Guide for Data Exchange Framework Activity for Marketing Automation](https://doc.sitecore.com/developers/def/50/data-exchange-framework/en/activity-for-marketing-automation.html) | The installation and configuration procedure for Data Exchange Framework Activity for Marketing Automation. | - | [Documentation](https://doc.sitecore.com/developers/def/50/data-exchange-framework/en/index-en.html) | The Sitecore documentation website with Sitecore Data Exchange Framework documentation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/6x/Data_Exchange_Framework_600/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/6x/Data_Exchange_Framework_600/Release_Notes.md deleted file mode 100644 index 2bab7242b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/6x/Data_Exchange_Framework_600/Release_Notes.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/6x/Data_Exchange_Framework_600/Release_Notes ---- - -**April 2021, released Data Exchange Framework 6.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | AD no. | - | --- | --- | --- | - | ​​Support for Sitecore XP 10.1.0. | | | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | AD no. | - | --- | --- | --- | - | If a multilanguage item does not contain any data about any of its languages, DEF cannot return the item. | CS0192360 | 433688 | - | The DEF messages use UTC time instead of server time. | CS0149765, CS0153043 | 296410 | - | The `ShowPipelineStatus` message is unable to show times that are greater than 24 hours. | CS0148490 | 293147 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/6x/Data_Exchange_Framework_600/index.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/6x/Data_Exchange_Framework_600/index.md deleted file mode 100644 index 51c439e47..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/6x/Data_Exchange_Framework_600/index.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Data Exchange Framework 6.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/6x/Data_Exchange_Framework_600 ---- - -The Data Exchange Framework enables synchronizing data between Sitecore XP and 3rd party systems.\ -Data Exchange Framework 6.0.0 is compatible with Sitecore XP 10.1. - -See [all available versions here](/downloads/Data_Exchange_Framework). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/6x/Data%20Exchange%20Framework%20600/Secure/Data%20Exchange%20Framework%206.0.0%20rev.%2001537.zip) | Sitecore Data Exchange Framework provides the ability to define the synchronization processes and data mappings. It also provides the ability to run those processes. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/def%2F6.0.0.01537.153) | The Sitecore Data Exchange Framework Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore Data Exchange Framework and Data Exchange Framework Tenant Web Service in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Marketing Automation Plugins - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework Action Plugin for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/6x/Data%20Exchange%20Framework%20600/Secure/Sitecore%20Data%20Exchange%20Framework%20Action%20Plugin%20for%20Marketing%20Automation%206.0.0-r01537.1182.scwdp.zip) | Provides an ability to trigger DEF Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - -## Tenant Service - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework Tenant Web Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/6x/Data%20Exchange%20Framework%20600/Secure/Sitecore%20Data%20Exchange%20Framework%20Tenant%20Web%20Service%206.0.0%20rev.%2001537.scwdp.zip) | Sitecore Data Exchange Framework Tenant Web Service – a web service that provides the ability to trigger synchronization process via web based push notifications. | - | [AppInsights logger for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/6x/Data%20Exchange%20Framework%20600/Secure/AppInsights%20logger%20for%20Tenant%20Service%206.0.0%20rev.%2001537.scwdp.zip) | Provides an ability of Application Insights logging for Tenant Service. | - | [SIF installation scripts for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/6x/Data%20Exchange%20Framework%20600/Secure/SIFInstallationScriptsforTenantService.zip) | Provides an ability to install Tenant Service using Sitecore Installation Framework. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/6x/Data%20Exchange%20Framework%20600/Secure/Data%20Exchange%20Framework%20(update%20package)%206.0.0%20rev.%2001537.update) | Update package you need to upgrade from Sitecore Data Exchange Framework, Sitecore, xConnect, MongoDB and SQL Providers 5.0.0 to Sitecore Data Exchange Framework 6.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Data_Exchange_Framework/6x/Data_Exchange_Framework_600/Release_Notes) | Release notes for Data Exchange Framework. | - | [Installation Guide for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/6x/Data%20Exchange%20Framework%20600/Secure/Data_Exchange_Framework_6_0_Installation_Guide-en.pdf) | The installation and configuration procedure for the Data Exchange Framework. | - | [Installation Guide for Data Exchange Tenant Web Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/6x/Data%20Exchange%20Framework%20600/Secure/Data_Exchange_Framework_6_0_Tenant_Web_Service_Installation_Guide-en.pdf) | The installation and configuration procedure for Sitecore Data Exchange Tenant Web Service. | - | [Container Deployment Guide for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/6x/Data%20Exchange%20Framework%20600/Secure/Data_Exchange_Framework_6_0_container_deployment_guide-en.pdf) | This guide describes how to do Sitecore Containers with Data Exchange Framework for Docker Compose & Kubernetes deployment. | - | [Container Deployment Guide for Data Exchange Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/6x/Data%20Exchange%20Framework%20600/Secure/Data_Exchange_Framework_6_0_Tenant_Web_Service_Container_Deployment_Guide-en.pdf) | This guide describes how to do the Data Exchange Tenant Service Docker Compose & Kubernetes deployment. | - | [Guide for Data Exchange Framework Activity for Marketing Automation](https://doc.sitecore.com/developers/def/60/data-exchange-framework/en/activity-for-marketing-automation.html) | The installation and configuration procedure for Data Exchange Framework Activity for Marketing Automation. | - | [Guide for Data Exchange Framework Save Action for Experience Forms](https://doc.sitecore.com/developers/def/60/data-exchange-framework/en/save-action-for-experience-forms.html) | This guide describes how to use Data Exchange Framework Save Action for Experience Forms. | - | [Documentation](https://doc.sitecore.com/developers/def/60/data-exchange-framework/en/index-en.html) | The Sitecore documentation website with Sitecore Data Exchange Framework documentation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/7x/Data_Exchange_Framework_700/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/7x/Data_Exchange_Framework_700/Release_Notes.md deleted file mode 100644 index 995f97200..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/7x/Data_Exchange_Framework_700/Release_Notes.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/7x/Data_Exchange_Framework_700/Release_Notes ---- - -**December 2021, released Data Exchange Framework 7.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | ADO no. | - | --- | --- | --- | - | ​​Support for Sitecore XP 10.2.0. | | | - | ​​Support for Items as Resources. | | | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | ADO no. | - | --- | --- | --- | - | The Sitecore Provider does not create a language version of an item if it already exists. | CS0200426 | 469620 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/7x/Data_Exchange_Framework_700/index.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/7x/Data_Exchange_Framework_700/index.md deleted file mode 100644 index bac35c6f3..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/7x/Data_Exchange_Framework_700/index.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Data Exchange Framework 7.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/7x/Data_Exchange_Framework_700 ---- - -The Data Exchange Framework enables synchronizing data between Sitecore XP and 3rd party systems.\ -Data Exchange Framework 7.0.0 is compatible with Sitecore XP 10.2. - -See [all available versions here](/downloads/Data_Exchange_Framework). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/7x/Data%20Exchange%20Framework%20700/Secure/Data%20Exchange%20Framework%207.0.0%20rev.%2001597.zip) | Sitecore Data Exchange Framework provides the ability to define the synchronization processes and data mappings. It also provides the ability to run those processes. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/def%2F7.0.0.01597.527) | The Sitecore Data Exchange Framework Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore Data Exchange Framework and Data Exchange Framework Tenant Web Service in development and production container environments. | - | [DEF-TS Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/def-ts%2F7.0.0.01597.109) |

The Sitecore Data Exchange Framework - Tenant Service Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Data Exchange Framework - Tenant Service in development and production container environments.



| - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Marketing Automation Plugins - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework Action Plugin for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/7x/Data%20Exchange%20Framework%20700/Secure/Sitecore%20Data%20Exchange%20Framework%20Action%20Plugin%20for%20Marketing%20Automation%207.0.0-r01597.1960.scwdp.zip) | Provides an ability to trigger DEF Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - -## Tenant Service - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework Tenant Web Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/7x/Data%20Exchange%20Framework%20700/Secure/Sitecore%20Data%20Exchange%20Framework%20Tenant%20Web%20Service%207.0.0%20rev.%2001597.scwdp.zip) | Sitecore Data Exchange Framework Tenant Web Service – a web service that provides the ability to trigger synchronization process via web based push notifications. | - | [AppInsights logger for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/7x/Data%20Exchange%20Framework%20700/Secure/AppInsights%20logger%20for%20Tenant%20Service%207.0.0%20rev.%2001597.scwdp.zip) | Provides an ability of Application Insights logging for Tenant Service. | - | [SIF installation scripts for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/7x/Data%20Exchange%20Framework%20700/Secure/SIFInstallationScriptsforTenantService.zip) | Provides an ability to install Tenant Service using Sitecore Installation Framework. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update resources for Data Exchange Framework](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Update resources you need to upgrade from Sitecore Data Exchange Framework 2.0.0 to 7.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Data_Exchange_Framework/7x/Data_Exchange_Framework_700/Release_Notes) | Release notes for Data Exchange Framework. | - | [Installation Guide for Data Exchange Framework](https://doc.sitecore.com/xp/en/developers/def/70/data-exchange-framework/install-data-exchange-framework-on-prem.html) | The installation and configuration procedure for Data Exchange Framework Activity. | - | [Installation Guide for Data Exchange Tenant Web Service](https://doc.sitecore.com/xp/en/developers/def/70/data-exchange-framework/install-the-tenant-web-service.html) | The installation and configuration procedure for Data Exchange Tenant Web Service. | - | [Container Deployment Guide for Data Exchange Framework](https://doc.sitecore.com/xp/en/developers/def/70/data-exchange-framework/installing-data-exchange-framework-on-containers.html) | This guide describes how to do Sitecore Containers with Data Exchange Framework for Docker Compose & Kubernetes deployment. | - | [Container Deployment Guide for Data Exchange Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/7x/Data%20Exchange%20Framework%20700/Secure/Data_Exchange_Framework_7_0_Tenant_Service_Container_Deployment_Guide-en.pdf) | This guide describes how to do the Data Exchange Tenant Service Docker Compose & Kubernetes deployment. | - | [Guide for Data Exchange Framework Activity for Marketing Automation](https://doc.sitecore.com/developers/def/70/data-exchange-framework/en/activity-for-marketing-automation.html) | The installation and configuration procedure for Data Exchange Framework Activity for Marketing Automation. | - | [Guide for Data Exchange Framework Save Action for Experience Forms](https://doc.sitecore.com/xp/en/developers/def/70/data-exchange-framework/walkthrough--creating-a-custom-form-save-action.html) | This guide describes how to use Data Exchange Framework Save Action for Experience Forms. | - | [Documentation](https://doc.sitecore.com/developers/def/70/data-exchange-framework/en/index-en.html) | The Sitecore documentation website with Sitecore Data Exchange Framework documentation. | - -## Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/7x/Data%20Exchange%20Framework%20700/Secure/Data%20Exchange%20Framework%207.0.0%20rev.%2001597%20(da-DK).zip) | Sitecore Connect for Data Exchange Framework Client Translations file Danish (da-DK). | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/7x/Data%20Exchange%20Framework%20700/Secure/Data%20Exchange%20Framework%207.0.0%20rev.%2001597%20(de-DE).zip) | Sitecore Connect for Data Exchange Framework Client Translations file German (de-DE). | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/7x/Data%20Exchange%20Framework%20700/Secure/Data%20Exchange%20Framework%207.0.0%20rev.%2001597%20(ja-JP).zip) | Sitecore Connect for Data Exchange Framework Client Translations file Japanese (ja-JP). | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/7x/Data%20Exchange%20Framework%20700/Secure/Data%20Exchange%20Framework%207.0.0%20rev.%2001597%20(zh-CN).zip) | Sitecore Connect for Data Exchange Framework Client Translations file Chinese (zh-CN). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/8x/Data_Exchange_Framework_800/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/8x/Data_Exchange_Framework_800/Release_Notes.md deleted file mode 100644 index a6985d7a5..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/8x/Data_Exchange_Framework_800/Release_Notes.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/8x/Data_Exchange_Framework_800/Release_Notes ---- - -**January 2023, released Data Exchange Framework 8.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | ADO no. | - | --- | --- | --- | - | ​​Support for Sitecore XP 10.3.0. | | | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | ADO no. | - | --- | --- | --- | - | - | | - - | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/8x/Data_Exchange_Framework_800/index.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/8x/Data_Exchange_Framework_800/index.md deleted file mode 100644 index aaeb267cd..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/8x/Data_Exchange_Framework_800/index.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Data Exchange Framework 8.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework/8x/Data_Exchange_Framework_800 ---- - -The Data Exchange Framework enables synchronizing data between Sitecore XP and 3rd party systems.\ -Data Exchange Framework 8.0.0 is compatible with Sitecore XP 10.3. - -See [all available versions here](/downloads/Data_Exchange_Framework). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/8x/Data%20Exchange%20Framework%20800/Secure/Data%20Exchange%20Framework%208.0.1631%20rev.%2001631.zip) | Sitecore Data Exchange Framework provides the ability to define the synchronization processes and data mappings. It also provides the ability to run those processes. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/def%2F8.0.1631.01631.635) | The Sitecore Data Exchange Framework Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore Data Exchange Framework and Data Exchange Framework Tenant Web Service in development and production container environments. | - | [DEF-TS Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/def-ts%2F8.0.1631.01631.290) |

The Sitecore Data Exchange Framework - Tenant Service Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Data Exchange Framework - Tenant Service in development and production container environments.



| - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Marketing Automation Plugins - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework Action Plugin for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/8x/Data%20Exchange%20Framework%20800/Secure/Sitecore%20Data%20Exchange%20Framework%20Action%20Plugin%20for%20Marketing%20Automation%208.0.1631-r01631.2265.scwdp.zip) | Provides an ability to trigger DEF Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - -## Tenant Service - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework Tenant Web Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/8x/Data%20Exchange%20Framework%20800/Secure/Sitecore%20Data%20Exchange%20Framework%20Tenant%20Web%20Service%208.0.1631%20rev.%2001631.scwdp.zip) | Sitecore Data Exchange Framework Tenant Web Service – a web service that provides the ability to trigger synchronization process via web based push notifications. | - | [AppInsights logger for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/8x/Data%20Exchange%20Framework%20800/Secure/AppInsights%20logger%20for%20Tenant%20Service%208.0.1631%20rev.%2001631.scwdp.zip) | Provides an ability of Application Insights logging for Tenant Service. | - | [SIF installation scripts for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/8x/Data%20Exchange%20Framework%20800/Secure/SIFInstallationScriptsforTenantService.zip) | Provides an ability to install Tenant Service using Sitecore Installation Framework. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update resources for Data Exchange Framework](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Update resources you need to upgrade from Sitecore Data Exchange Framework 2.0.0 to 7.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Data_Exchange_Framework/8x/Data_Exchange_Framework_800/Release_Notes) | Release notes for Data Exchange Framework. | - | [Installation Guide for Data Exchange Framework](https://doc.sitecore.com/xp/en/developers/def/80/data-exchange-framework/install-data-exchange-framework-on-prem.html) | The installation and configuration procedure for Data Exchange Framework Activity. | - | [Installation Guide for Data Exchange Tenant Web Service](https://doc.sitecore.com/xp/en/developers/def/80/data-exchange-framework/install-the-tenant-web-service.html) | The installation and configuration procedure for Data Exchange Tenant Web Service. | - | [Container Deployment Guide for Data Exchange Framework](https://doc.sitecore.com/xp/en/developers/def/80/data-exchange-framework/installing-data-exchange-framework-on-containers.html) | This guide describes how to do Sitecore Containers with Data Exchange Framework for Docker Compose & Kubernetes deployment. | - | [Container Deployment Guide for Data Exchange Tenant Service](https://doc.sitecore.com/xp/en/developers/def/80/data-exchange-framework/installing-the-tenant-service-on-containers.html) | This guide describes how to do the Data Exchange Tenant Service Docker Compose & Kubernetes deployment.


| - | [Guide for Data Exchange Framework Activity for Marketing Automation](https://doc.sitecore.com/xp/en/developers/def/80/data-exchange-framework/walkthrough--setting-up-a-marketing-automation-action-in-data-exchange-framework.html) | The installation and configuration procedure for Data Exchange Framework Activity for Marketing Automation. | - | [Guide for Data Exchange Framework Save Action for Experience Forms](https://doc.sitecore.com/xp/en/developers/def/80/data-exchange-framework/walkthrough--creating-a-custom-form-save-action.html) | This guide describes how to use Data Exchange Framework Save Action for Experience Forms. | - | [Documentation](https://doc.sitecore.com/developers/def/80/data-exchange-framework/en/index-en.html) | The Sitecore documentation website with Sitecore Data Exchange Framework documentation. | - -## Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/8x/Data%20Exchange%20Framework%20800/Secure/Data%20Exchange%20Framework%208.0.1631%20rev.%2001631%20(da-DK).zip) | Sitecore Connect for Data Exchange Framework Client Translations file Danish (da-DK). | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/8x/Data%20Exchange%20Framework%20800/Secure/Data%20Exchange%20Framework%208.0.1631%20rev.%2001631%20(de-DE).zip) | Sitecore Connect for Data Exchange Framework Client Translations file German (de-DE). | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/8x/Data%20Exchange%20Framework%20800/Secure/Data%20Exchange%20Framework%208.0.1631%20rev.%2001631%20(ja-JP).zip) | Sitecore Connect for Data Exchange Framework Client Translations file Japanese (ja-JP). | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/8x/Data%20Exchange%20Framework%20800/Secure/Data%20Exchange%20Framework%208.0.1631%20rev.%2001631%20(zh-CN).zip) | Sitecore Connect for Data Exchange Framework Client Translations file Chinese (zh-CN). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/9x/Data_Exchange_Framework_900/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/9x/Data_Exchange_Framework_900/Release_Notes.md deleted file mode 100644 index 2f0258dad..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/9x/Data_Exchange_Framework_900/Release_Notes.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Release Notes" -description: "" ---- - -**May 2024, released Data Exchange Framework 9.0.0** - -## New features/improvements - - | Description | ADO no. | - | --- | --- | - | ​​Added compatibility with Sitecore XP 10.4.0. | | - | Added insert options for Sequential Value Reader. | 346727 | - | Introduced a batch that deletes removed Salesforce contacts from XConnect. | 342343 | - -## Resolved issues - -The following issues have been fixed: - - | Description | ADO no. | - | --- | --- | - | Xconnect filter expression entity facet property value expression does not support other than *equal* and *not equal* condition operators. | 476931 | - | WebApiItemModelRepository does not get an item that has spaces in its path. | 302969 | - | Wrong condition operator in existing facet property condition expression items in xconnect filter expression. | 472003 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/9x/Data_Exchange_Framework_900/index.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/9x/Data_Exchange_Framework_900/index.md deleted file mode 100644 index fa2386b07..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/9x/Data_Exchange_Framework_900/index.md +++ /dev/null @@ -1,59 +0,0 @@ ---- -title: "Data Exchange Framework 9.0.0" -description: "" ---- - -The Data Exchange Framework enables synchronizing data between Sitecore XP and 3rd party systems.\ -Data Exchange Framework 9.0.0 is compatible with Sitecore XP 10.4.\ -See [all available versions here](/downloads/Data_Exchange_Framework). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/9x/Data%20Exchange%20Framework%20900/Data%20Exchange%20Framework%209.0.7%20rev.%2001658.zip) | Sitecore Data Exchange Framework provides the ability to define the synchronization processes and data mappings. It also provides the ability to run those processes. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/def%2F9.0.7.01658.741) | The Sitecore Data Exchange Framework Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore Data Exchange Framework and Data Exchange Framework Tenant Web Service in development and production container environments. | - | [DEF-TS Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/def-ts%2F9.0.7.01658.388) | The Sitecore Data Exchange Framework - Tenant Service Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Data Exchange Framework - Tenant Service in development and production container environments.



| - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Marketing Automation Plugins - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework Action Plugin for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/9x/Data%20Exchange%20Framework%20900/Sitecore%20Data%20Exchange%20Framework%20Action%20Plugin%20for%20Marketing%20Automation%209.0.7-r01658.2409.scwdp.zip) | Provides an ability to trigger DEF Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - -## Tenant Service - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework Tenant Web Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/9x/Data%20Exchange%20Framework%20900/Sitecore%20Data%20Exchange%20Framework%20Tenant%20Web%20Service%209.0.7%20rev.%2001658.scwdp.zip) | Sitecore Data Exchange Framework Tenant Web Service – a web service that provides the ability to trigger synchronization process via web based push notifications. | - | [AppInsights logger for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/9x/Data%20Exchange%20Framework%20900/AppInsights%20logger%20for%20Tenant%20Service%209.0.7%20rev.%2001658.scwdp.zip) | Provides an ability of Application Insights logging for Tenant Service. | - | [SIF installation scripts for Tenant Service](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/9x/Data%20Exchange%20Framework%20900/SIFInstallationScriptsforTenantService.zip) | Provides an ability to install Tenant Service using Sitecore Installation Framework. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update resources for Data Exchange Framework](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Update resources you need to upgrade from Sitecore Data Exchange Framework 2.0.0 to 9.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Data_Exchange_Framework/9x/Data_Exchange_Framework_900/Release_Notes) | Release notes for Data Exchange Framework. | - | [Installation Guide for Data Exchange Framework](https://doc.sitecore.com/xp/en/developers/def/80/data-exchange-framework/install-data-exchange-framework-on-prem.html) | **Updated document for 9.0 is to be completed!** The installation and configuration procedure for Data Exchange Framework Activity. | - | [Installation Guide for Data Exchange Tenant Web Service](https://doc.sitecore.com/xp/en/developers/def/80/data-exchange-framework/install-the-tenant-web-service.html) | **Updated document for 9.0 is to be completed!** The installation and configuration procedure for Data Exchange Tenant Web Service. | - | [Container Deployment Guide for Data Exchange Framework](https://doc.sitecore.com/xp/en/developers/def/80/data-exchange-framework/installing-data-exchange-framework-on-containers.html) | **Updated document for 9.0 is to be completed!** This guide describes how to do Sitecore Containers with Data Exchange Framework for Docker Compose & Kubernetes deployment. | - | [Container Deployment Guide for Data Exchange Tenant Service](https://doc.sitecore.com/xp/en/developers/def/80/data-exchange-framework/installing-the-tenant-service-on-containers.html) | **Updated document for 9.0 is to be completed!** This guide describes how to do the Data Exchange Tenant Service Docker Compose & Kubernetes deployment.


| - | [Guide for Data Exchange Framework Activity for Marketing Automation](https://doc.sitecore.com/xp/en/developers/def/80/data-exchange-framework/walkthrough--setting-up-a-marketing-automation-action-in-data-exchange-framework.html) | **Updated document for 9.0 is to be completed!** The installation and configuration procedure for Data Exchange Framework Activity for Marketing Automation. | - | [Guide for Data Exchange Framework Save Action for Experience Forms](https://doc.sitecore.com/xp/en/developers/def/80/data-exchange-framework/walkthrough--creating-a-custom-form-save-action.html) | **Updated document for 9.0 is to be completed!** This guide describes how to use Data Exchange Framework Save Action for Experience Forms. | - | [Documentation](https://doc.sitecore.com/developers/def/80/data-exchange-framework/en/index-en.html) | **Updated document for 9.0 is to be completed!** The Sitecore documentation website with Sitecore Data Exchange Framework documentation. | - -## Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/9x/Data%20Exchange%20Framework%20900/Data%20Exchange%20Framework%209.0.7%20rev.%2001658%20(da-DK).zip) | Sitecore Connect for Data Exchange Framework Client Translations file Danish (da-DK). | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/9x/Data%20Exchange%20Framework%20900/Data%20Exchange%20Framework%209.0.7%20rev.%2001658%20(de-DE).zip) | Sitecore Connect for Data Exchange Framework Client Translations file German (de-DE). | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/9x/Data%20Exchange%20Framework%20900/Data%20Exchange%20Framework%209.0.7%20rev.%2001658%20(ja-JP).zip) | Sitecore Connect for Data Exchange Framework Client Translations file Japanese (ja-JP). | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/9x/Data%20Exchange%20Framework%20900/Data%20Exchange%20Framework%209.0.7%20rev.%2001658%20(zh-CN).zip) | Sitecore Connect for Data Exchange Framework Client Translations file Chinese (zh-CN). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/index.md b/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/index.md deleted file mode 100644 index ff9b193ee..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Data_Exchange_Framework/index.md +++ /dev/null @@ -1,94 +0,0 @@ ---- -title: "Sitecore Data Exchange Framework" -description: "Sitecore Data Exchange Framework is designed to facilitate the transfer of data between systems. It allows you to define the logic needed to read data from a source system, transform that data into a format that is compatible with a target system, and write the transformed data into a target system. Developers can build connectors that allow 3rd party systems to serve as source and target systems." -origin: https://dev.sitecore.net/Downloads/Data_Exchange_Framework.aspx ---- - - - -## Sitecore Data Exchange Framework 9.x - - -[Data Exchange Framework 9.0.0](/downloads/Data_Exchange_Framework/9x/Data_Exchange_Framework_900) - - - - - -## Sitecore Data Exchange Framework 8.x - - -[Data Exchange Framework 8.0.0](/downloads/Data_Exchange_Framework/8x/Data_Exchange_Framework_800) - - - - - -## Sitecore Data Exchange Framework 7.x - - -[Data Exchange Framework 7.0.0](/downloads/Data_Exchange_Framework/7x/Data_Exchange_Framework_700) - - - - - -## Sitecore Data Exchange Framework 6.x - - -[Data Exchange Framework 6.0.0](/downloads/Data_Exchange_Framework/6x/Data_Exchange_Framework_600) - - - - - -## Sitecore Data Exchange Framework 5.x - - -[Data Exchange Framework 5.0.0](/downloads/Data_Exchange_Framework/5x/Data_Exchange_Framework_500) - - - - - -## Sitecore Data Exchange Framework 4.x - - -[Data Exchange Framework 4.0.0](/downloads/Data_Exchange_Framework/4x/Data_Exchange_Framework_400) - - - - - -## Sitecore Data Exchange Framework 3.x - - -[Data Exchange Framework 3.0.1](/downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_301)\ -[Data Exchange Framework 3.0.0](/downloads/Data_Exchange_Framework/3x/Data_Exchange_Framework_300) - - - - - -## Sitecore Data Exchange Framework 2.x - - -[Data Exchange Framework 2.1.0](/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_210)\ -[Data Exchange Framework 2.0.1](/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_201)\ -[Data Exchange Framework 2.0](/downloads/Data_Exchange_Framework/2x/Data_Exchange_Framework_20) - - - - - -## Sitecore Data Exchange Framework 1.x - - -[Data Exchange Framework 1.4.1](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4_1)\ -[Data Exchange Framework 1.4](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_4)\ -[Data Exchange Framework 1.3](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_3)\ -[Data Exchange Framework 1.2](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_2)\ -[Data Exchange Framework 1.1](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_11)\ -[Data Exchange Framework 1.0](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_10) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Campaign_Integration_module/2x/Dynamics_CRM_Campaign_Integration_21/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Campaign_Integration_module/2x/Dynamics_CRM_Campaign_Integration_21/index.md deleted file mode 100644 index 93a0d47e7..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Campaign_Integration_module/2x/Dynamics_CRM_Campaign_Integration_21/index.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Dynamics CRM Campaign Integration 2.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Campaign_Integration_module/2x/Dynamics_CRM_Campaign_Integration_21.aspx ---- - -Integrate your CRM system with Sitecore, and enrich the CRM with information about customers' online activity. - -`Dynamics CRM Campaign Integration module 2.1 is compatible with Sitecore Experience Platform 8.0 and Web Forms for Marketers (WFFM) 8.0.` - -## Core Downloads - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Campaign Integration](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Campaign%20Integration%20module/2x/Dynamics%20CRM%20Campaign%20Integration%2021/Secure/Dynamics%20CRM%20Campaign%20Integration%20for%20WFFM%202.1%20rev.%20141222.zip) | Adds `save actions` for Web Forms for Marketers (WFFM) that can update Dynamics CRM using data collected in a web form. | - | [Dynamics CRM Security Provider](/downloads/Dynamics_CRM_Security_Provider) |

Dynamics CRM Security Provider is used to interact directly with Dynamics CRM.





This module must be installed prior to installing the Dynamics CRM Campaign Integration module.

You must install the version of Dynamics CRM Security Provider that matches your Sitecore server.



| - -## Links - - | Resource | Description | - | --- | --- | - | [Installation guide](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Campaign%20Integration%20module/2x/Dynamics%20CRM%20Campaign%20Integration%2021/Secure/Dynamics%20CRM%20Campaign%20Integration%202%201%20Installation%20Guide.pdf) | This guide describes how to install and configure the Sitecore Dynamics CRM Campaign Integration module 2.1. | - | [Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Campaign%20Integration%20module/2x/Dynamics%20CRM%20Campaign%20Integration%2021/Secure/Dynamics%20CRM%20Campaign%20Integration%202%201%20Upgrade%20Guide.pdf) | This guide describes how to upgrade the Dynamics CRM Campaign Integration from version 2.0 to version 2.1. | - | [Documentation](https://sdn.sitecore.net/Products/Dynamics%20CRM%20Campaign%20Integration/DCRMCI21/Documentation) | All documentation for this module is available in PDF format on the Sitecore Developer Network (SDN). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Campaign_Integration_module/2x/Dynamics_CRM_Campaign_Integration_22/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Campaign_Integration_module/2x/Dynamics_CRM_Campaign_Integration_22/Release_Notes.md deleted file mode 100644 index a0d3cf9ed..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Campaign_Integration_module/2x/Dynamics_CRM_Campaign_Integration_22/Release_Notes.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Campaign_Integration_module/2x/Dynamics_CRM_Campaign_Integration_22/Release_Notes ---- - -**October 27, 2015 - released Sitecore Dynamics CRM Campaign Integration 2.2 (rev. 151027)** - -### New features & improvements - -- Compatible with WFFM 8.1 - - -### Resolved issues - -- Hotfix 441518 [CRM save actions] Use value from previous save action does not work -- Hotfix 442313 Connector failing when an existing value is not sent to a mapped optionset in CRM -- [CRM+WFFM] Complete CRM depending on input value (67779) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Campaign_Integration_module/2x/Dynamics_CRM_Campaign_Integration_22/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Campaign_Integration_module/2x/Dynamics_CRM_Campaign_Integration_22/index.md deleted file mode 100644 index 8d0bcf3ce..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Campaign_Integration_module/2x/Dynamics_CRM_Campaign_Integration_22/index.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: "Dynamics CRM Campaign Integration 2.2" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Campaign_Integration_module/2x/Dynamics_CRM_Campaign_Integration_22.aspx ---- - -Integrate your CRM system with Sitecore, and enrich the CRM with information about customers' online activity. - -`Dynamics CRM Campaign Integration module 2.2 is compatible with Sitecore Experience Platform 8.1 & 8.2 and Web Forms for Marketers (WFFM) 8.1 & 8.2.` - -## Downloads - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Campaign Integration](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Campaign%20Integration%20module/2x/Dynamics%20CRM%20Campaign%20Integration%2022/Secure/Dynamics%20CRM%20Campaign%20Integration%20for%20WFFM%202.2%20rev.%20151027.zip) | Adds `save actions` for Web Forms for Marketers (WFFM) that can update Dynamics CRM using data collected in a web form. | - | [Dynamics CRM Security Provider](/downloads/Dynamics_CRM_Security_Provider) |

Dynamics CRM Security Provider is used to interact directly with Dynamics CRM.





This module must be installed prior to installing the Dynamics CRM Campaign Integration module.

You must install the version of Dynamics CRM Security Provider that matches your Sitecore server.



| - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Campaign Integration Update Package](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Campaign%20Integration%20module/2x/Dynamics%20CRM%20Campaign%20Integration%2022/Secure/Dynamics%20CRM%20Campaign%20Integration%20for%20WFFM%202.2%20rev.%20151027%20update.update) | Download the files that you need for the upgrade process. | - | [Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Campaign%20Integration%20module/2x/Dynamics%20CRM%20Campaign%20Integration%2022/Secure/Dynamics%20CRM%20Campaign%20Integration%202%202%20Upgrade%20Guide.pdf) | This guide describes how to upgrade the Dynamics CRM Campaign Integration from version 2.0 to version 2.2. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Dynamics_CRM_Campaign_Integration_module/2x/Dynamics_CRM_Campaign_Integration_22/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Campaign%20Integration%20module/2x/Dynamics%20CRM%20Campaign%20Integration%2022/Secure/Dynamics%20CRM%20Campaign%20Integration%202%202%20Installation%20Guide.pdf) | This guide describes how to install and configure the Sitecore Dynamics CRM Campaign Integration module 2.2. | - | [Documentation](https://sdn.sitecore.net/Products/Dynamics%20CRM%20Campaign%20Integration/DCRMCI21/Documentation) | All documentation for this module is available in PDF format on the Sitecore Developer Network (SDN). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Campaign_Integration_module/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Campaign_Integration_module/index.md deleted file mode 100644 index bdc9765ec..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Campaign_Integration_module/index.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Dynamics CRM Campaign Integration module" -description: "Integrate your CRM system with Sitecore, and enrich the CRM with information about customers' online activity." -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Campaign_Integration_module.aspx ---- - - - -## Dynamics CRM Campaign Integration module 2.x - - -[Dynamics CRM Campaign Integration 2.2](/downloads/Dynamics_CRM_Campaign_Integration_module/2x/Dynamics_CRM_Campaign_Integration_22)\ -[Dynamics CRM Campaign Integration 2.1](/downloads/Dynamics_CRM_Campaign_Integration_module/2x/Dynamics_CRM_Campaign_Integration_21) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_20/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_20/index.md deleted file mode 100644 index 5f29a6e53..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_20/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Sitecore Connect for Microsoft Dynamics 365 for Sales 2.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_20.aspx ---- - -Synchronize data between Microsoft Dynamics 365 for Sales and Sitecore Experience Platform. - - - - Sitecore Connect for Microsoft Dynamics 365 for Sales version 2.0 requires Sitecore Experience Platform version 9.0. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 2.0](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%2020/Secure/Data%20Exchange%20Framework%202.0.0%20rev.%20171013.zip) | Sitecore Data Exchange Framework is the foundation for Sitecore Connect.DEF provides the ability to define the synchronization processes and data mappings that result in data being synchronized between Sitecore and 3rd party systems. | - | [Microsoft Dynamics 365 for Sales Provider for Data Exchange Framework 2.0](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%2020/Secure/Dynamics%20Provider%20for%20Data%20Exchange%20Framework%202.0.0%20rev.%20171013.zip) | Provides the ability to read and write objects to Microsoft Dynamics 365 for Sales. | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales 2.0](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%2020/Secure/Connect%20for%20Microsoft%20Dynamics%2020.zip) | Pre-configured synchronization processes and data mapping for exchanging data between Sitecore Experience Platform and Microsoft Dynamics 365 for Sales. | - | [Sitecore Provider for Data Exchange Framework 2.0](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%2020/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%202.0.0%20rev.%20171013.zip) | Provides the ability to read and write items to Sitecore content databases. | - | [SQL Provider for Data Exchange Framework 2.0](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%2020/Secure/SQL%20Provider%20for%20Data%20Exchange%20Framework%202.0.0%20rev.%20171013.zip) | Provides the ability to read and write to databases that can be accessed using ADO.NET. It also provides the ability to run stored procedures on those databases. | - | [xConnect Provider for Data Exchange Framework 2.0](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%2020/Secure/xConnect%20Provider%20for%20Data%20Exchange%20Framework%202.0.0%20rev.%20171013.zip) | Provides the ability to read and write data to the collection and reference data services of Sitecore xConnect. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_20/Release_Notes) | Release notes for Sitecore Connect for Microsoft Dynamics 365 for Sales. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%2020/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%202.0%20Installation%20Guide.pdf) | The installation and configuration procedure for the Sitecore Connect for Microsoft Dynamics 365 for Sales. | - | [Documentation](https://doc.sitecore.com/developers/90/connectors/index.html) | The Sitecore Developer Center has all of the documentation for Sitecore Connect for Microsoft Dynamics 365 for Sales. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_201/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_201/Release_Notes.md deleted file mode 100644 index 3f73870dd..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_201/Release_Notes.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_201/Release_Notes ---- - -**January 2018 – released Sitecore Connect for Microsoft Dynamics 365 for Sales 2.0.1 (rev. 180108)** - -This is an update release. - -## Highlights - -- Support for Sitecore 9.0.1 -- Support for synchronizing marketing list membership from Microsoft Dynamics 365 for Sales to Sitecore Experience Database. -- Support for synchronizing contacts from Sitecore Experience Database to Microsoft Dynamics 365 for Sales. -- Support for synchronizing email activity from Sitecore Experience Database to Microsoft Dynamics 365 for Sales. - -## Documentation - -- Documentation links are available on the [Downloads](/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_201) page - -## System requirements - -- Sitecore Experience Platform 9.0 rev. 171219 (9.0 Update-1) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_201/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_201/index.md deleted file mode 100644 index 9149baed7..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_201/index.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -title: "Sitecore Connect for Microsoft Dynamics 365 for Sales 2.0.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_201.aspx ---- - -Synchronize data between Microsoft Dynamics 365 for Sales and Sitecore Experience Platform. - - - - Sitecore Connect for Microsoft Dynamics 365 for Sales version 2.0.1 requires Sitecore Experience Platform version 9.0 update 1. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/install/Data%20Exchange%20Framework%202.0.1%20rev.%20180108.zip) | Sitecore Data Exchange Framework is the foundation for Sitecore Connect.DEF provides the ability to define the synchronization processes and data mappings that result in data being synchronized between Sitecore and 3rd party systems. | - | [Microsoft Dynamics 365 for Sales Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/install/Dynamics%20Provider%20for%20Data%20Exchange%20Framework%202.0.1%20rev.%20180108.zip) | Provides the ability to read and write objects to Microsoft Dynamics 365 for Sales. | - | [Sitecore Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/install/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%202.0.1%20rev.%20180108.zip) | Provides the ability to read and write items to Sitecore content databases. | - | [SQL Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/install/SQL%20Provider%20for%20Data%20Exchange%20Framework%202.0.1%20rev.%20180108.zip) | Provides the ability to read and write to databases that can be accessed using ADO.NET. It also provides the ability to run stored procedures on those databases. | - | [xConnect Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/install/xConnect%20Provider%20for%20Data%20Exchange%20Framework%202.0.1%20rev.%20180108.zip) | Provides the ability to read and write data to the collection and reference data services of Sitecore xConnect. | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales 2.0.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/install/Connect%20for%20Microsoft%20Dynamics%202.0.1%20rev.%20180108.zip) | Pre-configured synchronization processes and data mapping for exchanging data between Sitecore Experience Platform and Microsoft Dynamics 365 for Sales. | - | [Staging Database for Sitecore Connect for Microsoft Dynamics 365 for Sales 2.0.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/Sitecore.DataExchange.Staging.dacpac) | Dacpac used to deploy the staging database.The staging database is needed in order to synchronize marketing list membership. | - -## CD Server Files - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 2.0.1 CD server](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/install/CD%20server/Data%20Exchange%20Framework%20CD%20Server%202.0.1%20rev.%20180108.zip) | Sitecore Data Exchange Framework installation package for content delivery (CD) servers. | - | [Microsoft Dynamics 365 for Sales Provider for Data Exchange Framework 2.0.1 CD server](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/install/CD%20server/Dynamics%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.0.1%20rev.%20180108.zip) | Microsoft Dynamics 365 for Sales provider installation package for content delivery (CD) servers. | - | [Sitecore Provider for Data Exchange Framework 2.0.1 CD server](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/install/CD%20server/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.0.1%20rev.%20180108.zip) | Sitecore provider installation package for content delivery (CD) servers. | - | [SQL Provider for Data Exchange Framework 2.0.1 CD server](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/install/CD%20server/SQL%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.0.1%20rev.%20180108.zip) | Sitecore provider installation package for content delivery (CD) servers. | - | [xConnect Provider for Data Exchange Framework 2.0.1 CD server](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/install/CD%20server/xConnect%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.0.1%20rev.%20180108.zip) | xConnect provider installation package for content delivery (CD) servers. | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales 2.0.1 CD server](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/install/CD%20server/Connect%20for%20Microsoft%20Dynamics%20CD%20Server%202.0.1%20rev.%20180108.zip) | Sitecore Connect for Microsoft Dynamics 365 for Sales installation package for content delivery (CD) servers. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/update/Data%20Exchange%20Framework%202.0.1.update) | Update package you need to upgrade from Data Exchange Framework 2.0.0 rev. 171013 to 2.0.1 rev. 180108. | - | [Update Package for Microsoft Dynamics 365 for Sales Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/update/Dynamics%20Provider%20for%20Data%20Exchange%20Framework%202.0.1.update) | Update package you need to upgrade from Microsoft Dynamics 365 for Sales Provider for Data Exchange Framework 2.0.0 rev. 171013 to 2.0.1 rev. 180108. | - | [Update Package for Sitecore Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/update/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%202.0.1.update) | Update package you need to upgrade from Sitecore Provider for Data Exchange Framework 2.0.0 rev. 171013 to 2.0.1 rev. 180108. | - | [Update Package for xConnect Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/update/xConnect%20Provider%20for%20Data%20Exchange%20Framework%202.0.1.update) | Update package you need to upgrade from xConnect Provider for Data Exchange Framework 2.0.0 rev. 171013 to 2.0.1 rev. 180108. | - | [Update Package for Sitecore Connect for Microsoft Dynamics 365 for Sales 2.0.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/update/Connect%20for%20Microsoft%20Dynamics%202.0.1.update) | Update package you need to upgrade from Sitecore Connect for Microsoft Dynamics 365 for Sales 2.0.0 rev. 171013 to 2.0.1 rev. 180108. | - | [Data Exchange Framework SDK 2.0.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/update/Data%20Exchange%20Framework%20SDK%202.0.1%20rev.%20180108.zip) | Sitecore Data Exchange Framework SDK provides the tool used to install the tenant update definition file. | - | [Tenant Update Definition File for Sitecore Connect for Microsoft Dynamics 365 for Sales 2.0.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/update/Sitecore.DataExchange.Tools.DynamicsConnect.Local.Upgrade.config) | File for Data Exchange Framework SDK that allows tenants created with Sitecore Connect for Microsoft Dynamics 365 for Sales 2.0 rev. 171013 to be upgraded to 2.0.1 rev. 180108. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_201/Release_Notes) | Release notes for Sitecore Connect for Microsoft Dynamics 365 for Sales. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20201/Secure/Sitecore_Connect_for_Microsoft_Dynamics_2_0_1_Inst-en.pdf) | The installation and configuration procedure for the Sitecore Connect for Microsoft Dynamics 365 for Sales. | - | [Documentation](https://doc.sitecore.com/developers/91/connectors/index.html) | The Sitecore documentation portal has all of the documentation for Sitecore Connect for Microsoft Dynamics 365 for Sales. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_210/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_210/Release_Notes.md deleted file mode 100644 index a537cd79d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_210/Release_Notes.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_210/Release_Notes ---- - -**November 2018, released Sitecore Connect for Microsoft Dynamics 365 for Sales 2.1.0** - -## Compatibility - -This version of the module only runs on Sitecore XP 9.1. - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Support for Sitecore XP 9.1. | | | - | You can now personalize content Sitecore based on membership of a marketing list in Microsoft Dynamics.​ | | | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | If there is an empty dynamic list, ​the `List Membership` reader fails with an exception. | 515167, 518813 | 226312 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_210/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_210/index.md deleted file mode 100644 index b4d20ea8d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_210/index.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Sitecore Connect for Microsoft Dynamics 365 for Sales 2.1.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_210.aspx ---- - -Synchronize data between Microsoft Dynamics 365 for Sales and Sitecore Experience Platform. - - - - Sitecore Connect for Microsoft Dynamics 365 for Sales version 2.1.0 requires Sitecore Experience Platform version 9.1. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/Data%20Exchange%20Framework%202.1.0%20rev.%20181113.zip) | Sitecore Data Exchange Framework is the foundation for Sitecore Connect.DEF provides the ability to define the synchronization processes and data mappings that result in data being synchronized between Sitecore and 3rd party systems. | - | [Microsoft Dynamics 365 for Sales Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/Dynamics%20Provider%20for%20Data%20Exchange%20Framework%202.1.0%20rev.%20181113.zip) | Provides the ability to read and write objects to Microsoft Dynamics 365 for Sales. | - | [Sitecore Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%202.1.0%20rev.%20181113.zip) | Provides the ability to read and write items to Sitecore content databases. | - | [SQL Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/SQL%20Provider%20for%20Data%20Exchange%20Framework%202.1.0%20rev.%20181113.zip) | Provides the ability to read and write to databases that can be accessed using ADO.NET. It also provides the ability to run stored procedures on those databases. | - | [xConnect Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/XConnect%20Provider%20for%20Data%20Exchange%20Framework%202.1.0%20rev.%20181113.zip) | Provides the ability to read and write data to the collection and reference data services of Sitecore xConnect. | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/Connect%20for%20Microsoft%20Dynamics%202.1.0%20rev.%20181113.zip) | Pre-configured synchronization processes and data mapping for exchanging data between Sitecore Experience Platform and Microsoft Dynamics 365 for Sales. | - | [Staging Database for Sitecore Connect for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/Sitecore.DataExchange.Staging.dacpac) | Dacpac used to deploy the staging database.The staging database is needed in order to synchronize marketing list membership. | - -## Tenant Service - - | Resource | Description | - | --- | --- | - | [Dynamics Provider for Tenant Service](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/Dynamics%20Provider%20for%20Tenant%20Service%20210%20rev%20181113scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Dynamics 365 data on the Tenant Service or to work with Dynamics 365 as an endpoint. | - -## CD Server Files - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework CD server](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/Data%20Exchange%20Framework%20CD%20Server%202.1.0%20rev.%20181113.zip) | Sitecore Data Exchange Framework installation package for content delivery (CD) servers. | - | [Microsoft Dynamics 365 for Sales Provider for Data Exchange Framework CD server](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/Dynamics%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.1.0%20rev.%20181113.zip) | Microsoft Dynamics 365 for Sales provider installation package for content delivery (CD) servers. | - | [Sitecore Provider for Data Exchange Framework CD server](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.1.0%20rev.%20181113.zip) | Sitecore provider installation package for content delivery (CD) servers. | - | [SQL Provider for Data Exchange Framework CD server](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/SQL%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.1.0%20rev.%20181113.zip) | Sitecore provider installation package for content delivery (CD) servers. | - | [xConnect Provider for Data Exchange Framework CD server](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/XConnect%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.1.0%20rev.%20181113.zip) | xConnect provider installation package for content delivery (CD) servers. | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales CD server](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/Connect%20for%20Microsoft%20Dynamics%20CD%20Server%202.1.0%20rev.%20181113.zip) | Sitecore Connect for Microsoft Dynamics 365 for Sales installation package for content delivery (CD) servers. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/Data%20Exchange%20Framework%202.1.0.update) | Update package you need to upgrade from Data Exchange Framework 2.0.1 to 2.1.0. | - | [Update Package for Microsoft Dynamics 365 for Sales Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/Dynamics%20Provider%20for%20Data%20Exchange%20Framework%202.1.0.update) | Update package you need to upgrade from Microsoft Dynamics 365 for Sales Provider for Data Exchange Framework 2.0.1 to 2.1.0. | - | [Update Package for Sitecore Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%202.1.0.update) | Update package you need to upgrade from Sitecore Provider for Data Exchange Framework 2.0.1 to 2.1.0. | - | [Update Package for xConnect Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/xConnect%20Provider%20for%20Data%20Exchange%20Framework%202.1.0.update) | Update package you need to upgrade from xConnect Provider for Data Exchange Framework 2.0.1 to 2.1.0. | - | [Update Package for Sitecore Connect for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/Connect%20for%20Microsoft%20Dynamics%202.1.0.update) | Update package you need to upgrade from Sitecore Connect for Microsoft Dynamics 365 for Sales 2.0.1 to 2.1.0. | - | [Data Exchange Framework SDK](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/Data%20Exchange%20Framework%20SDK%202.1.0%20rev.%20181113.zip) | Sitecore Data Exchange Framework SDK provides the tool used to install the tenant update definition file. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_210/Release_Notes) | Release notes for Sitecore Connect for Microsoft Dynamics 365 for Sales. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20210/Secure/Sitecore_Connect_for_Microsoft_Dynamics_2_1_Instal-en.pdf) | The installation and configuration procedure for the Sitecore Connect for Microsoft Dynamics 365 for Sales. | - | [Documentation](https://doc.sitecore.com/developers/dynamics-crm-connect/21/sitecore-connect-for-microsoft-dynamics-365-for-sales/en/index-en.html) | The Sitecore documentation portal has all of the documentation for Sitecore Connect for Microsoft Dynamics 365 for Sales. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/3x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_300/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/3x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_300/Release_Notes.md deleted file mode 100644 index 18fd93c61..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/3x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_300/Release_Notes.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/3x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_300/Release_Notes ---- - -**September 2019, released Sitecore Connect for Microsoft Dynamics 365 for Sales 3.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Support for Sitecore XP 9.2.0. | | | - | The installation and upgrade process has been simplified by combining 2 packages into 1. | | | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | A contact synchronization batch job between xConnect and DynamicsCRM stops immediately if a contact is deleted while the job is running. | | 289982 | - | The staging database is never cleared and this causes performance problems and timeouts during large synchronization jobs. | 526782 | 317364 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/3x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_300/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/3x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_300/index.md deleted file mode 100644 index ae7835a28..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/3x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_300/index.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: "Sitecore Connect for Microsoft Dynamics 365 for Sales 3.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/3x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_300.aspx ---- - -Synchronize data between Microsoft Dynamics 365 for Sales and Sitecore Experience Platform. - - - - Sitecore Connect for Microsoft Dynamics 365 for Sales version 3.0.0 requires Sitecore Experience Platform version 9.2. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/3x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20300/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%203.0.0%20rev.%2001395.zip) | Provides the ability to read and write objects to Sitecore Connect for Microsoft Dynamics 365 for Sales. | - | [Dynamics CRM Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/3x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20300/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20Plugin%20for%20Tenant%20Service%203.0.0%20rev.%2001395.scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Dynamics 365 data on the Tenant Service or to work with Dynamics 365 as an endpoint. | - | [Staging Database for Sitecore Connect for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/3x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20300/Secure/Sitecore.DataExchange.Staging.dacpac) | Dacpac used to deploy the staging database. The staging database is needed in order to synchronize marketing list membership. | - -## CD Server Files - - | Resource | Description | - | --- | --- | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales CD server](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/3x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20300/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20CD%20Server%203.0.0%20rev.%2001395.zip) | Sitecore Connect for Microsoft Dynamics 365 for Sales installation package for content delivery (CD) servers. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Sitecore Connect for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/3x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20300/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%203.0.0%20rev.%2001395%20(update%20package).update) | Update package you need to upgrade from Sitecore Connect for Sitecore Connect for Microsoft Dynamics 365 for Sales 2.1.0 to 3.0.0. | - | [Update Package for Sitecore Connect for Microsoft Dynamics 365 for Sales CD Server](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/3x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20300/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20CD%20Server%203.0.0%20rev.%2001395%20(update%20package).update) | Update package you need to upgrade from Sitecore Connect for Sitecore Connect for Microsoft Dynamics 365 for Sales 2.1.0 to 3.0.0 for content delivery (CD) servers. | - | [Update Package for Staging Database for Sitecore Connect for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/3x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20300/Secure/Upgrade%20Sitecore%20DataExchange%20Staging%20Database.sql) | SQL Script to update existing staging database with new cleanupData stored procedure from 2.1.0 to 3.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Dynamics_CRM_Connect/3x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_300/Release_Notes) | Release notes for Sitecore Connect for Microsoft Dynamics 365 for Sales. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/3x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20300/Secure/Sitecore_Connect_for_Microsoft_Dynamics_3_0_Instal-en.pdf) | The installation and configuration procedure for the Sitecore Connect for Microsoft Dynamics 365 for Sales. | - | [Documentation](https://doc.sitecore.com/developers/dynamics-crm-connect/30/sitecore-connect-for-microsoft-dynamics-365-for-sales/en/index-en.html) | The Sitecore documentation portal has all of the documentation for Sitecore Connect for Microsoft Dynamics 365 for Sales. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/4x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_400/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/4x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_400/Release_Notes.md deleted file mode 100644 index b1e82d1f2..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/4x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_400/Release_Notes.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/4x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_400/Release_Notes ---- - -**January 2020, released Sitecore Connect for Microsoft Dynamics 365 for Sales 4.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Support for Sitecore XP 9.3.0. | | | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | The `Gender` field for a contact is not synchronized from Dynamics CRM to Sitecore. | 532170 | 335537 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/4x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_400/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/4x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_400/index.md deleted file mode 100644 index baa129043..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/4x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_400/index.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: "Sitecore Connect for Microsoft Dynamics 365 for Sales 4.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/4x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_400.aspx ---- - -Synchronize data between Microsoft Dynamics 365 for Sales and Sitecore Experience Platform. - - - - Sitecore Connect for Microsoft Dynamics 365 for Sales version 4.0 requires Sitecore Experience Platform version 9.3. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/4x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20400/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%204.0.0%20rev.%2001421.zip) | Provides the ability to read and write objects to Sitecore Connect for Microsoft Dynamics 365 for Sales. | - | [Dynamics CRM Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/4x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20400/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20Plugin%20for%20Tenant%20Service%204.0.0%20rev.%2001421.scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Dynamics 365 data on the Tenant Service or to work with Dynamics 365 as an endpoint. | - | [Staging Database for Sitecore Connect for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/4x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20400/Secure/Sitecore.DataExchange.Staging.dacpac) | Dacpac used to deploy the staging database. The staging database is needed in order to synchronize marketing list membership. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Sitecore Connect for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/4x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20400/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20(update%20package)%204.0.0%20rev.%2001421.update) | Update package you need to upgrade from Sitecore Connect for Sitecore Connect for Microsoft Dynamics 365 for Sales 3.0.0 to 4.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Dynamics_CRM_Connect/4x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_400/Release_Notes) | Release notes for Sitecore Connect for Microsoft Dynamics 365 for Sales. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/4x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20400/Secure/Sitecore_Connect_for_Microsoft_Dynamics_4_0_Instal-en.pdf) | The installation and configuration procedure for the Sitecore Connect for Microsoft Dynamics 365 for Sales. | - | [Documentation](https://doc.sitecore.com/developers/dynamics-crm-connect/40/sitecore-connect-for-microsoft-dynamics-365-for-sales/en/sitecore-connect-for-microsoft-dynamics-365-for-sales-configuration-guide.html) | The Sitecore documentation portal has all of the documentation for Sitecore Connect for Microsoft Dynamics 365 for Sales. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/5x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_500/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/5x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_500/Release_Notes.md deleted file mode 100644 index 10acc8cbe..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/5x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_500/Release_Notes.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/5x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_500/Release_Notes ---- - -**August 2020, released Sitecore Connect for Microsoft Dynamics 365 for Sales 5.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Support for Sitecore XP 10.0.0. | | | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/5x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_500/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/5x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_500/index.md deleted file mode 100644 index 869e0c663..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/5x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_500/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Sitecore Connect™ for Microsoft Dynamics 365 for Sales 5.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/5x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_500 ---- - -Synchronize data between Microsoft Dynamics 365 for Sales and Sitecore Experience Platform.\ -Sitecore Connect™ for Microsoft Dynamics 365 for Sales 5.0.0 is compatible with Sitecore XP 10.0. - -See [all available versions here](/downloads/Dynamics_CRM_Connect). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/5x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20500/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%205.0.0%20rev.%2001439.zip) | Provides the ability to read and write objects to Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Dynamics CRM Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/5x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20500/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20Plugin%20for%20Tenant%20Service%205.0.0%20rev.%2001439.scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Dynamics 365 data on the Tenant Service or to work with Dynamics 365 as an endpoint. | - | [Staging Database for Sitecore Connect™ for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/5x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20500/Secure/Sitecore.DataExchange.Staging.dacpac) | Dacpac used to deploy the staging database. The staging database is needed in order to synchronize marketing list membership. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Sitecore Connect™ for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/5x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20500/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20(update%20package)%205.0.0%20rev.%2001439.update) | Update package you need to upgrade from Sitecore Connect™ for Microsoft Dynamics 365 for Sales 4.0.0 to 5.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Dynamics_CRM_Connect/5x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_500/Release_Notes) | Release notes for Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/5x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20500/Secure/Sitecore_Connect_for_Microsoft_Dynamics_5_0_Installation_Guide-en.pdf) | The installation and configuration procedure for the Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Documentation](https://doc.sitecore.com/developers/dynamics-crm-connect/50/sitecore-connect-for-microsoft-dynamics-365-for-sales/en/sitecore-connect-for-microsoft-dynamics-365-for-sales-configuration-guide.html) | The Sitecore documentation portal has all of the documentation for Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/6x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_600/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/6x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_600/Release_Notes.md deleted file mode 100644 index ef44b9ea5..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/6x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_600/Release_Notes.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/6x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_600/Release_Notes ---- - -**June 2021, released Sitecore Connect for Microsoft Dynamics 365 for Sales 6.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | AD no. | - | --- | --- | --- | - | Support for Sitecore XP 10.1.0. | | | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/6x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_600/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/6x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_600/index.md deleted file mode 100644 index c868f9805..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/6x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_600/index.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: "Sitecore Connect™ for Microsoft Dynamics 365 for Sales 6.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/6x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_600 ---- - -Synchronize data between Microsoft Dynamics 365 for Sales and Sitecore Experience Platform.\ -Sitecore Connect™ for Microsoft Dynamics 365 for Sales 6.0.0 is compatible with Sitecore XP 10.1. - -See [all available versions here](/downloads/Dynamics_CRM_Connect). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/6x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20600/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%206.0.0%20rev.%2001474.zip) | Provides the ability to read and write objects to Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Dynamics CRM Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/6x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20600/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20Plugin%20for%20Tenant%20Service%206.0.0%20rev.%2001474.scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Dynamics 365 data on the Tenant Service or to work with Dynamics 365 as an endpoint. | - | [Staging Database for Sitecore Connect™ for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/6x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20600/Secure/Sitecore.DataExchange.Staging.dacpac) | Dacpac used to deploy the staging database. The staging database is needed in order to synchronize marketing list membership. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/dcrm%2F6.0.0.01474.70) | The Sitecore Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Sitecore Connect™ for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/6x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20600/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20(update%20package)%206.0.0%20rev.%2001474.update) | Update package you need to upgrade from Sitecore Connect™ for Microsoft Dynamics 365 for Sales 5.0.0 to 6.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Dynamics_CRM_Connect/6x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_600/Release_Notes) | Release notes for Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/6x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20600/Secure/Sitecore_Connect_for_Microsoft_Dynamics_6_0_Installation_Guide-en.pdf) | The installation and configuration procedure for the Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Container Deployment Guide](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/6x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20600/Secure/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_6_0_Container_Deploym-en.pdf) | This guide describes how to do Sitecore Connect™ for Microsoft Dynamics 365 for Sales for Docker Compose and Kubernetes deployment. | - | [Documentation](https://doc.sitecore.com/developers/dynamics-crm-connect/60/sitecore-connect-for-microsoft-dynamics-365-for-sales/en/sitecore-connect-for-microsoft-dynamics-365-for-sales-configuration-guide.html) | The Sitecore documentation portal has all of the documentation for Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/7x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_700/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/7x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_700/Release_Notes.md deleted file mode 100644 index eaa250752..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/7x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_700/Release_Notes.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/7x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_700/Release_Notes ---- - -**December 2021, released Sitecore Connect for Microsoft Dynamics 365 for Sales 7.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | ADO no. | - | --- | --- | --- | - | Support for Sitecore XP 10.2.0. | | | - | Support for Items as Resources. | | | - | Updated to support the WS-Trust deprecation changes in Dynamics CRM connectors. | | 489332 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/7x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_700/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/7x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_700/index.md deleted file mode 100644 index 3f1b36755..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/7x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_700/index.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: "Sitecore Connect™ for Microsoft Dynamics 365 for Sales 7.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/7x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_700 ---- - -Synchronize data between Microsoft Dynamics 365 for Sales and Sitecore Experience Platform.\ -Sitecore Connect™ for Microsoft Dynamics 365 for Sales 7.0.0 is compatible with Sitecore XP 10.2. - -See [all available versions here](/downloads/Dynamics_CRM_Connect). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/7x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20700/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%207.0.0%20rev.%2001499.zip) | Provides the ability to read and write objects to Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Dynamics CRM Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/7x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20700/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20Plugin%20for%20Tenant%20Service%207.0.0%20rev.%2001499.scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Dynamics 365 data on the Tenant Service or to work with Dynamics 365 as an endpoint. | - | [Staging Database for Sitecore Connect™ for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/7x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20700/Secure/Sitecore.DataExchange.Staging.dacpac) | Dacpac used to deploy the staging database. The staging database is needed in order to synchronize marketing list membership. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/dcrm%2F7.0.0.01499.150) | The Sitecore Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update resources for Sitecore Connect™ for Microsoft Dynamics 365 for Sales](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Update resources you need to upgrade from Sitecore Connect™ for Microsoft Dynamics 365 for Sales 2.0.0 to 7.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Dynamics_CRM_Connect/7x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_700/Release_Notes) | Release notes for Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Installation Guide](https://doc.sitecore.com/xp/en/developers/dynamics-crm-connect/70/sitecore-connect-for-microsoft-dynamics-365-for-sales/install-sitecore-connect-for-microsoft-dynamics-for-sales-365-on-prem.html) | The installation and configuration procedure for the Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Container Deployment Guide](https://doc.sitecore.com/xp/en/developers/dynamics-crm-connect/70/sitecore-connect-for-microsoft-dynamics-365-for-sales/install-sitecore-connect-for-microsoft-dynamics-365-for-sales-on-containers.html) | This guide describes how to deploy Sitecore Connect™ for Microsoft Dynamics 365 for Sales on Docker Compose and Kubernetes. | - | [Documentation](https://doc.sitecore.com/xp/en/developers/dynamics-crm-connect/70/sitecore-connect-for-microsoft-dynamics-365-for-sales/index-en.html) | The Sitecore documentation portal has all of the documentation for Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - -## Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/7x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20700/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%207.0.0%20rev.%2001499%20(da-DK).zip) | Sitecore Connect™ for Microsoft Dynamics 365 for Sales Client Translations file Danish (da-DK). | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/7x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20700/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%207.0.0%20rev.%2001499%20(de-DE).zip) | Sitecore Connect™ for Microsoft Dynamics 365 for Sales Client Translations file German (de-DE). | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/7x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20700/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%207.0.0%20rev.%2001499%20(ja-JP).zip) | Sitecore Connect™ for Microsoft Dynamics 365 for Sales Client Translations file Japanese (ja-JP). | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/7x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20700/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%207.0.0%20rev.%2001499%20(zh-CN).zip) | Sitecore Connect™ for Microsoft Dynamics 365 for Sales Client Translations file Chinese (zh-CN). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/8x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_800/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/8x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_800/Release_Notes.md deleted file mode 100644 index 7aa895d77..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/8x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_800/Release_Notes.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/8x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_800/Release_Notes ---- - -**January 2023, released Sitecore Connect for Microsoft Dynamics 365 for Sales 8.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | ADO no. | - | --- | --- | --- | - | Support for Sitecore XP 10.3.0. | | | - | Error occurs when the "Date Range Condition Expression" filter expression is used | CS0315527,CS0316342 | 542243 | - | Cannot sync contacts when the "Facet Property String Value Expression" is used in filter expression in Dynamics CRM connect | CS0322368 | 547962 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/8x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_800/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/8x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_800/index.md deleted file mode 100644 index e13e99037..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/8x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_800/index.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: "Sitecore Connect™ for Microsoft Dynamics 365 for Sales 8.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/8x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_800 ---- - -Synchronize data between Microsoft Dynamics 365 for Sales and Sitecore Experience Platform.\ -Sitecore Connect™ for Microsoft Dynamics 365 for Sales 8.0.0 is compatible with Sitecore XP 10.3. - -See [all available versions here](/downloads/Dynamics_CRM_Connect). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/8x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20800/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%208.0.1521%20rev.%2001521.zip) | Provides the ability to read and write objects to Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Dynamics CRM Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/8x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20800/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20Plugin%20for%20Tenant%20Service%208.0.1521%20rev.%2001521.scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Dynamics 365 data on the Tenant Service or to work with Dynamics 365 as an endpoint. | - | [Staging Database for Sitecore Connect™ for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/8x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20800/Secure/Sitecore.DataExchange.Staging.dacpac) | Dacpac used to deploy the staging database. The staging database is needed in order to synchronize marketing list membership. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/dcrm%2F8.0.1521.01521.209) | The Sitecore Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update resources for Sitecore Connect™ for Microsoft Dynamics 365 for Sales](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Update resources you need to upgrade from Sitecore Connect™ for Microsoft Dynamics 365 for Sales 2.0.0 to 8.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Dynamics_CRM_Connect/8x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_800/Release_Notes) | Release notes for Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Installation Guide](https://doc.sitecore.com/xp/en/developers/dynamics-crm-connect/80/sitecore-connect-for-microsoft-dynamics-365-for-sales/install-sitecore-connect-for-microsoft-dynamics-for-sales-365-on-prem.html) | The installation and configuration procedure for the Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Container Deployment Guide](https://doc.sitecore.com/xp/en/developers/dynamics-crm-connect/80/sitecore-connect-for-microsoft-dynamics-365-for-sales/install-sitecore-connect-for-microsoft-dynamics-365-for-sales-on-containers.html) | This guide describes how to deploy Sitecore Connect™ for Microsoft Dynamics 365 for Sales on Docker Compose and Kubernetes. | - | [Documentation](https://doc.sitecore.com/xp/en/developers/dynamics-crm-connect/80/sitecore-connect-for-microsoft-dynamics-365-for-sales/index-en.html) | The Sitecore documentation portal has all of the documentation for Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - -## Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/8x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20800/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%208.0.1521%20rev.%2001521%20(da-DK).zip) | Sitecore Connect™ for Microsoft Dynamics 365 for Sales Client Translations file Danish (da-DK). | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/8x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20800/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%208.0.1521%20rev.%2001521%20(de-DE).zip) | Sitecore Connect™ for Microsoft Dynamics 365 for Sales Client Translations file German (de-DE). | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/8x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20800/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%208.0.1521%20rev.%2001521%20(ja-JP).zip) | Sitecore Connect™ for Microsoft Dynamics 365 for Sales Client Translations file Japanese (ja-JP). | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/8x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20800/Secure/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%208.0.1521%20rev.%2001521%20(zh-CN).zip) | Sitecore Connect™ for Microsoft Dynamics 365 for Sales Client Translations file Chinese (zh-CN). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/9x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_900/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/9x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_900/Release_Notes.md deleted file mode 100644 index 15260800c..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/9x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_900/Release_Notes.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -title: "Release Notes" -description: "" ---- - -**May 2024, released Sitecore Connect for Microsoft Dynamics 365 for Sales 9.0.0** - -## New features/improvements - - | Description | ADO no. | - | --- | --- | - | Added compatibility with Sitecore XP 10.4.0. | | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/9x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_900/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/9x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_900/index.md deleted file mode 100644 index ffe72c20f..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/9x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_900/index.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: "Sitecore Connect™ for Microsoft Dynamics 365 for Sales 9.0.0" -description: "" ---- - -Synchronize data between Microsoft Dynamics 365 for Sales and Sitecore Experience Platform.\ -Sitecore Connect™ for Microsoft Dynamics 365 for Sales 9.0.0 is compatible with Sitecore XP 10.4.\ -See [all available versions here](/downloads/Dynamics_CRM_Connect). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/9x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20900/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%209.0.5%20rev.%2001529.zip) | Provides the ability to read and write objects to Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Dynamics CRM Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/9x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20900/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20Plugin%20for%20Tenant%20Service%209.0.5%20rev.%2001529.scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Dynamics 365 data on the Tenant Service or to work with Dynamics 365 as an endpoint. | - | [Staging Database for Sitecore Connect™ for Microsoft Dynamics 365 for Sales](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/9x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20900/Sitecore.DataExchange.Staging.dacpac) | Dacpac used to deploy the staging database. The staging database is needed in order to synchronize marketing list membership. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/dcrm%2F9.0.5.01529.647) | The Sitecore Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update resources for Sitecore Connect™ for Microsoft Dynamics 365 for Sales](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Update resources you need to upgrade from Sitecore Connect™ for Microsoft Dynamics 365 for Sales 2.0.0 to 9.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Dynamics_CRM_Connect/9x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_900/Release_Notes) | Release notes for Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Installation Guide](https://doc.sitecore.com/xp/en/developers/dynamics-crm-connect/80/sitecore-connect-for-microsoft-dynamics-365-for-sales/install-sitecore-connect-for-microsoft-dynamics-for-sales-365-on-prem.html) | **Updated document for 9.0 is to be completed!** The installation and configuration procedure for the Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Container Deployment Guide](https://doc.sitecore.com/xp/en/developers/dynamics-crm-connect/80/sitecore-connect-for-microsoft-dynamics-365-for-sales/install-sitecore-connect-for-microsoft-dynamics-365-for-sales-on-containers.html) | **Updated document for 9.0 is to be completed!** Guide describing how to deploy Sitecore Connect™ for Microsoft Dynamics 365 for Sales on Docker Compose and Kubernetes. | - | [Documentation](https://doc.sitecore.com/xp/en/developers/dynamics-crm-connect/80/sitecore-connect-for-microsoft-dynamics-365-for-sales/index-en.html) | **Updated document for 9.0 is to be completed!** Link to Sitecore Documentation containing documentation for Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - -## Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/9x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20900/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%209.0.5%20rev.%2001529%20(da-DK).zip) | Sitecore Connect™ for Microsoft Dynamics 365 for Sales Client Translations file Danish (da-DK). | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/9x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20900/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%209.0.5%20rev.%2001529%20(de-DE).zip) | Sitecore Connect™ for Microsoft Dynamics 365 for Sales Client Translations file German (de-DE). | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/9x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20900/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%209.0.5%20rev.%2001529%20(ja-JP).zip) | Sitecore Connect™ for Microsoft Dynamics 365 for Sales Client Translations file Japanese (ja-JP). | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/9x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%20900/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20for%20Sales%209.0.5%20rev.%2001529%20(zh-CN).zip) | Sitecore Connect™ for Microsoft Dynamics 365 for Sales Client Translations file Chinese (zh-CN). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_10/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_10/index.md deleted file mode 100644 index c873c0c13..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_10/index.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: "Dynamics CRM Connect 1.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_10.aspx ---- - -Integrate data from Dynamics CRM with Sitecore, and data from Sitecore with Dynamics CRM. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.0](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%2010/Secure/Data%20Exchange%20Framework%201.0%20rev.%20160625.zip) | Data Exchange Framework is the foundation for Dynamics CRM Connect.It provides the ability to define the synchronization processes and data mappings that allow data from Dynamics CRM to be exposed in Sitecore, and data from Sitecore to be exposed in Dynamics CRM. | - | [Sitecore Provider for Data Exchange Framework 1.0](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%2010/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.0%20rev.%20160625.zip) | Provides the ability for Data Exchange Framework to interact with Sitecore items, marketing taxonomies and xDB. | - | [Dynamics CRM Provider for Data Exchange Framework 1.0](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%2010/Secure/Dynamics%20CRM%20Provider%20for%20Data%20Exchange%20Framework%201.0%20rev.%20160625.zip) | Provides the ability for Data Exchange Framework to interact with Dynamics CRM entities such as contacts, marketing lists and campaigns. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_10/Release_Notes) | Release notes for Dynamics CRM Connect. | - | [Documentation](https://doc.sitecore.net:443/en/Products/CRM_Connect/10) | Sitecore Documentation Portal with all Dynamics CRM Connect documentation. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Installation Guide (A4)](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%2010/Secure/Installation%20Guide%20Dynamics%20CRM%20Connect%201.0-a4.pdf) | Step by step guide to install Dynamics CRM Connect (A4 format). | - | [Installation Guide (US letter)](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%2010/Secure/Installation%20Guide%20Dynamics%20CRM%20Connect%201.0-usletter.pdf) | Step by step guide to install Dynamics CRM Connect (US letter format). | - | [Configuration Guide (A4)](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%2010/Secure/Configuration%20Guide%20Dynamics%20CRM%20Connect%201.0-a4.pdf) | Guide on how to configure, use and customize Dynamics CRM Connect (A4 format). | - | [Configuration Guide (US letter)](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%2010/Secure/Installation%20Guide%20Dynamics%20CRM%20Connect%201.0-usletter.pdf) | Guide on how to configure, use and customize Dynamics CRM Connect (US letter format). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_11/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_11/index.md deleted file mode 100644 index 9548532ca..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_11/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Dynamics CRM Connect 1.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_11.aspx ---- - -Integrate data from Dynamics CRM with Sitecore, and data from Sitecore with Dynamics CRM. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%2011/Secure/Data%20Exchange%20Framework%201.1.0%20rev.%20160817.zip) | Data Exchange Framework is the foundation for Dynamics CRM Connect.It provides the ability to define the synchronization processes and data mappings that allow data from Dynamics CRM to be exposed in Sitecore, and data from Sitecore to be exposed in Dynamics CRM. | - | [Sitecore Provider for Data Exchange Framework 1.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%2011/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.1.0%20rev.%20160817.zip) | Provides the ability for Data Exchange Framework to interact with Sitecore items, marketing taxonomies and xDB. | - | [Sitecore Provider for Data Exchange Framework 1.1 Hotfix 128342](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%2011/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.1.0%20rev.%20160817%20HF%20128342.zip) | This hotfix is needed if you intend to use the Sitecore provider with a Data Exchange Tenant that was created as an empty tenant. | - | [Dynamics CRM Provider for Data Exchange Framework 1.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%2011/Secure/Dynamics%20CRM%20Provider%20for%20Data%20Exchange%20Framework%201.1.0%20rev.%20160817.zip) | Provides the ability for Data Exchange Framework to interact with Dynamics CRM entities such as contacts, marketing lists and campaigns. | - | [Dynamics CRM Provider for Data Exchange Framework 1.1 Hotfix 128513](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%2011/Secure/Dynamics%20CRM%20Provider%20for%20Data%20Exchange%20Framework%201.1.0%20rev.%20160817%20HF%20128513.zip) | This hotfix is needed if you intend to use the Dynamics CRM provider with a Data Exchange Tenant that was created as an empty tenant. | - | [Dynamics CRM Provider for Data Exchange Framework 1.1 Hotfix 134785](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%2011/Secure/Dynamics%20CRM%20Provider%20for%20Data%20Exchange%20Framework%201.1.0%20rev.%20160817%20HF%20134785.zip) | This hotfix is needed in order to connect to Dynamics 365. This hotfix is also compatible with earlier versions of Dynamics CRM Online. | - -## Upgrade Information - - | Resource | Description | - | --- | --- | - | [Upgrade Package](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%2011/Secure/Dynamics%20CRM%20Connect%201.1.0%20rev.%20160817.update) | The Sitecore upgrade package that must be installed in order to upgrade from Dynamics CRM Connect version 1.0 to 1.1. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_11/Release_Notes) | Release notes for Dynamics CRM Connect. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%2011/Secure/Installation%20Guide%20Dynamics%20CRM%20Connect%2011a4.pdf) | The installation and configuration procedure for the Dynamics CRM Connect. | - | [Documentation](https://doc.sitecore.com/developers/82/connectors/index.html) | Sitecore Documentation Portal with all Dynamics CRM Connect documentation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_2/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_2/Release_Notes.md deleted file mode 100644 index f1c2138b8..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_2/Release_Notes.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_2/Release_Notes ---- - -**December 2016 – released Dynamics CRM Connect 1.2.0 (rev. 161212)** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -Details on these changes are included in the product documentation, available on the [Downloads](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_2) page. - -## Highlights - -- Improved logging and troubleshooting features -- Improved performance and and control over synchronization processes -- Support Dynamics 365 -- Support for Sitecore on Azure -- Support for Data Exchange Framework 1.2 -- Bug fixes - -## Documentation - -- Documentation links are available on the [Downloads](/downloads/Data_Exchange_Framework/1x/Data_Exchange_Framework_1_2) page - -## System requirements - -- Sitecore Experience Platform 8.1 rev. 151207 (8.1 update-1) or later. - -## New features & improvements - -- Performance improvements when synchronizing CRM campaigns with Sitecore. -- Performance improvements when synchronizing xDB contacts with CRM. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_2/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_2/index.md deleted file mode 100644 index 28f536e81..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_2/index.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: "Dynamics CRM Connect 1.2" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_2.aspx ---- - -Integrate data from Dynamics CRM with Sitecore, and data from Sitecore with Dynamics CRM. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.2](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%202/Secure/Data%20Exchange%20Framework%201.2.0%20rev.%20161212.zip) | Data Exchange Framework is the foundation for Dynamics CRM Connect.It provides the ability to define the synchronization processes and data mappings that allow data from Dynamics CRM to be exposed in Sitecore, and data from Sitecore to be exposed in Dynamics CRM. | - | [Sitecore Provider for Data Exchange Framework 1.2](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%202/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.2.0%20rev.%20161212.zip) | Provides the ability for Data Exchange Framework to interact with Sitecore items, marketing taxonomies and xDB. | - | [Dynamics CRM Provider for Data Exchange Framework 1.2](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%202/Secure/Dynamics%20CRM%20Provider%20for%20Data%20Exchange%20Framework%201.2.0%20rev.%20161212.zip) | Provides the ability for Data Exchange Framework to interact with Dynamics CRM entities such as contacts, marketing lists and campaigns. | - -## Upgrade Information - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.2 Update Package](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%202/Secure/Data%20Exchange%20Framework%201.2.0%20rev.%20161212%20update.update) | Update package you need to upgrade from DEF 1.1 initial to DEF 1.2 initial. | - | [Sitecore Provider for Data Exchange Framework 1.2 Update Package](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%202/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.2.0%20rev.%20161212%20update.update) | Update package you need to upgrade from Sitecore Provider for DEF 1.1 initial to Sitecore Provider DEF 1.2 initial. | - | [Dynamics CRM Provider for Data Exchange Framework 1.2 Update Package](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%202/Secure/Dynamics%20CRM%20Provider%20for%20Data%20Exchange%20Framework%201.2.0%20rev.%20161212%20update.update) | Update package you need to upgrade from Dynamics CRM Provider for DEF 1.1 initial to Dynamics CRM Provider DEF 1.2 initial. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/82/connectors/index.html) | The Sitecore documentation website with all the Dynamics CRM Connect documentation. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%202/Secure/Installation%20Guide%20Dynamics%20CRM%20Connect%2012a4.pdf) | The installation and configuration procedure for the Dynamics CRM Connect. | - | [Release Notes](/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_2/Release_Notes) | Release notes for Dynamics CRM Connect. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_3/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_3/Release_Notes.md deleted file mode 100644 index 9d4e9eb74..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_3/Release_Notes.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_3/Release_Notes ---- - -**February 2017 – released Dynamics CRM Connect 1.3.0 (rev. 170206)** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -Details on these changes are included in the product documentation, available on the [Downloads](/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_3) page. - -## Highlights - -- Support for Data Exchange Framework 1.3 -- Bug fixes - -## Documentation - -- Documentation links are available on the [Downloads](/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_3) page - -## System requirements - -- Sitecore Experience Platform 8.1 rev. 151207 (8.1 update-1) or later - -## Deprecated and removed functionality - -- Renamed namespace Sitecore.DataExchange.Providers.DynamicsCrm.ApplyMappingStatusActions to Sitecore.DataExchange.Providers.DynamicsCrm.MappingsAppliedActions -- Renamed namespace Sitecore.DataExchange.Providers.DynamicsCrm.Converters.ApplyMappingStatusActions to Sitecore.DataExchange.Providers.DynamicsCrm.Converters.MappingsAppliedActions - -## Resolved issues - -The following issues have been resolved: - -- Filter expression with operator “On or before selected” date does not work (131540) -- Default entity name is set on template used to update any entity (137924) -- Certain pipeline steps are not included in the insert options for the pipeline template (137924) -- Pipeline step template has incorrect name (138275) -- Unable to write option set values to Dynamics entities (139650) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_3/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_3/index.md deleted file mode 100644 index f1e253264..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_3/index.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: "Dynamics CRM Connect 1.3" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_3.aspx ---- - -Integrate data from Dynamics CRM with Sitecore, and data from Sitecore with Dynamics CRM. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.3](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%203/Secure/Data%20Exchange%20Framework%201.3.0%20rev.%20170210.zip) | Data Exchange Framework is the foundation for Dynamics CRM Connect.It provides the ability to define the synchronization processes and data mappings that allow data from Dynamics CRM to be exposed in Sitecore, and data from Sitecore to be exposed in Dynamics CRM. | - | [Sitecore Provider for Data Exchange Framework 1.3](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%203/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.3.0%20rev.%20170210.zip) | Provides the ability for Data Exchange Framework to interact with Sitecore items, marketing taxonomies and xDB. | - | [Dynamics CRM Provider for Data Exchange Framework 1.3](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%203/Secure/Dynamics%20CRM%20Provider%20for%20Data%20Exchange%20Framework%201.3.0%20rev.%20170210.zip) | Provides the ability for Data Exchange Framework to interact with Dynamics CRM entities such as contacts, marketing lists and campaigns. | - -## Upgrade Information - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.3 Update Package](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%203/Secure/Data%20Exchange%20Framework%201.3.0%20rev.%20170210%20update.update) | Update package you need to upgrade from DEF 1.2 initial to DEF 1.3 initial. | - | [Sitecore Provider for Data Exchange Framework 1.3 Update Package](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%203/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.3.0%20rev.%20170210%20update.update) | Update package you need to upgrade from Sitecore Provider for DEF 1.2 initial to Sitecore Provider DEF 1.3 initial. | - | [Dynamics CRM Provider for Data Exchange Framework 1.3 Update Package](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%203/Secure/Dynamics%20CRM%20Provider%20for%20Data%20Exchange%20Framework%201.3.0%20rev.%20170210%20update.update) | Update package you need to upgrade from Dynamics CRM Provider for DEF 1.2 initial to Dynamics CRM Provider DEF 1.3 initial. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/82/connectors/index.html) | The Sitecore documentation website with all the Dynamics CRM Connect documentation. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%203/Secure/Installation%20Guide%20Dynamics%20CRM%20Connect%2013a4.pdf) | The installation and configuration procedure for the Dynamics CRM Connect. | - | [Release Notes](/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_3/Release_Notes) | Release notes for Dynamics CRM Connect. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4/Release_Notes.md deleted file mode 100644 index f84d57a98..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4/Release_Notes.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4/Release_Notes ---- - -**April 2017 – released Dynamics CRM Connect 1.4.0 (rev. 170419)** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -Details on these changes are included in the product documentation, available on the [Downloads](/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4) page. - -## Highlights - -- Support for Data Exchange Framework 1.4 - -## Documentation - -- Documentation links are available on the [Downloads](/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4) page - -## System requirements - -- Sitecore Experience Platform 8.1 rev. 151207 (8.1 update-1) or later - -## Deprecated and removed functionality - -- "Delta settings" feature moved from Dynamics CRM Provider to framework - -## Resolved issues - -The following issues have been resolved: - -- Last synced property on the CRM Lists to xDB Sync Pipeline Batch is not updated (153786) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4/index.md deleted file mode 100644 index 9e6689d2e..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Dynamics CRM Connect 1.4" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4.aspx ---- - -Integrate data from Dynamics CRM with Sitecore, and data from Sitecore with Dynamics CRM. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.4](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%204/Secure/Data%20Exchange%20Framework%201.4.0%20rev.%20170419.zip) | Data Exchange Framework is the foundation for Dynamics CRM Connect.It provides the ability to define the synchronization processes and data mappings that allow data from Dynamics CRM to be exposed in Sitecore, and data from Sitecore to be exposed in Dynamics CRM. | - | [Sitecore Provider for Data Exchange Framework 1.4](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%204/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.4.0%20rev.%20170419.zip) | Provides the ability for Data Exchange Framework to interact with Sitecore items, marketing taxonomies and xDB. | - | [Dynamics CRM Provider for Data Exchange Framework 1.4](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%204/Secure/Dynamics%20CRM%20Provider%20for%20Data%20Exchange%20Framework%201.4.0%20rev.%20170419.zip) | Provides the ability for Data Exchange Framework to interact with Dynamics CRM entities such as contacts, marketing lists and campaigns. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.4 Update Package](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%204/Secure/Data%20Exchange%20Framework%201.4.0%20rev.%20170419%20update.update) | Update package you need to upgrade from DEF 1.3 initial to DEF 1.4 initial. | - | [Sitecore Provider for Data Exchange Framework 1.4 Update Package](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%204/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.4.0%20rev.%20170419%20update.update) | Update package you need to upgrade from Sitecore Provider for DEF 1.3 initial to Sitecore Provider DEF 1.4 initial. | - | [Dynamics CRM Provider for Data Exchange Framework 1.4 Update Package](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%204/Secure/Dynamics%20CRM%20Provider%20for%20Data%20Exchange%20Framework%201.4.0%20rev.%20170419%20update.update) | Update package you need to upgrade from Dynamics CRM Provider for DEF 1.3 initial to Dynamics CRM Provider DEF 1.4 initial. | - | [Data Exchange Framework 1.4 SDK](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%204/Secure/Data%20Exchange%20Framework%20SDK%201.4.0%20rev.%20170419.zip) | If you are upgrading from a previous version of Dynamics CRM Connect and you have tenants configured, this tool provides the ability to upgrade those tenants. See the Dynamics CRM Connect installation guide for more information. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4/Release_Notes) | Release notes for Dynamics CRM Connect. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%204/Secure/Installation%20Guide%20Dynamics%20CRM%20Connect%2014a4.pdf) | The installation and configuration procedure for the Dynamics CRM Connect. | - | [Documentation](https://doc.sitecore.com/developers/82/connectors/index.html) | The Sitecore documentation website with all the Dynamics CRM Connect documentation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4_1/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4_1/Release_Notes.md deleted file mode 100644 index 2505ef572..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4_1/Release_Notes.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4_1/Release_Notes ---- - -**August 2017 – released Dynamics CRM Connect 1.4.1 (rev. 170818)** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -Details on these changes are included in the product documentation, available on the [Downloads](/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4_1) page. - -## Highlights - -- Support for Data Exchange Framework 1.4.1 - -## Documentation - -- Documentation links are available on the [Downloads](/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4_1) page - -## System requirements - -- Sitecore Experience Platform 8.1 rev. 151207 (8.1 update-1) or later - -## Deprecated and removed functionality - -- "Dependent Tree Macro" feature moved from Dynamics CRM Provider to framework \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4_1/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4_1/index.md deleted file mode 100644 index d949d066d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4_1/index.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: "Dynamics CRM Connect 1.4.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4_1.aspx ---- - -Integrate data from Dynamics CRM with Sitecore, and data from Sitecore with Dynamics CRM. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.4.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%204%201/Secure/Data%20Exchange%20Framework%201.4.1%20rev.%20170818.zip) | Data Exchange Framework is the foundation for Dynamics CRM Connect.It provides the ability to define the synchronization processes and data mappings that allow data from Dynamics CRM to be exposed in Sitecore, and data from Sitecore to be exposed in Dynamics CRM. | - | [Sitecore Provider for Data Exchange Framework 1.4.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%204%201/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.4.1%20rev.%20170818.zip) | Provides the ability for Data Exchange Framework to interact with Dynamics CRM entities such as contacts, marketing lists and campaigns. | - | [Dynamics CRM Provider for Data Exchange Framework 1.4.1](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%204%201/Secure/Dynamics%20CRM%20Provider%20for%20Data%20Exchange%20Framework%201.4.1%20rev.%20170818.zip) | Provides the ability for Data Exchange Framework to interact with Sitecore items, marketing taxonomies and xDB. | - | [Data Exchange Framework SDK 1.4.1](https://scdp.blob.core.windows.net/downloads/Data%20Exchange%20Framework/1x/Data%20Exchange%20Framework%201%204%201/Secure/Data%20Exchange%20Framework%20SDK%201.4.1%20rev.%20170818.zip) | Tools for developers who build and maintain providers for Data Exchange Framework. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.4.1 Update Package](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%204%201/Secure/Data%20Exchange%20Framework%201.4.1%20rev.%20170818%20update.update) | Update package you need to upgrade from Data Exchange Framework 1.4.0 rev. 170419 to 1.4.1 rev. 170818. | - | [Sitecore Provider for Data Exchange Framework 1.4.1 Update Package](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%204%201/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.4.1%20rev.%20170818%20update.update) | Update package you need to upgrade from Sitecore Provider for Data Exchange Framework from 1.4.0 rev. 170419 to 1.4.1 rev. 170818. | - | [Dynamics CRM Provider for Data Exchange Framework 1.4.1 Update Package](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%204%201/Secure/Dynamics%20CRM%20Provider%20for%20Data%20Exchange%20Framework%201.4.1%20rev.%20170818%20update.update) | Update package you need to upgrade from Dynamics CRM Provider for Data Exchange Framework from 1.4.0 rev. 170419 to 1.4.1 rev. 170818. | - | [Data Exchange Framework SDK 1.4.1 Update Package](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%204%201/Secure/Data%20Exchange%20Framework%20SDK%201.4.1%20rev.%20170818%20update.update) | Update package you need to upgrade from Data Exchange Framework SDK 1.4.0 rev. 170419 to 1.4.1 rev. 170818. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4_1/Release_Notes) | Release notes for Dynamics CRM Connect. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Connect/Dynamics%20CRM%20Connect%201/Dynamics%20CRM%20Connect%201%204/Secure/Installation%20Guide%20Dynamics%20CRM%20Connect%2014a4.pdf) | The installation and configuration procedure for the Dynamics CRM Connect. | - | [Documentation](https://doc.sitecore.com/developers/82/connectors/index.html) | The Sitecore documentation website with all the Dynamics CRM Connect documentation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/index.md deleted file mode 100644 index 8bf15bf3d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Connect/index.md +++ /dev/null @@ -1,93 +0,0 @@ ---- -title: "Sitecore Connect™ for Microsoft Dynamics 365 for Sales" -description: "Connector for synchronizing data between Sitecore Experience Platform and Microsoft Dynamics 365 for Sales (and formerly Microsoft Dynamics CRM)." -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Connect.aspx ---- - - - -## Sitecore Connect™ for Microsoft Dynamics 365 for Sales 9.x - - -[Sitecore Connect™ for Microsoft Dynamics 365 for Sales 9.0.0](/downloads/Dynamics_CRM_Connect/9x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_900) - - - - - -## Sitecore Connect™ for Microsoft Dynamics 365 for Sales 8.x - - -[Sitecore Connect™ for Microsoft Dynamics 365 for Sales 8.0.0](/downloads/Dynamics_CRM_Connect/8x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_800) - - - - - -## Sitecore Connect™ for Microsoft Dynamics 365 for Sales 7.x - - -[Sitecore Connect™ for Microsoft Dynamics 365 for Sales 7.0.0](/downloads/Dynamics_CRM_Connect/7x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_700) - - - - - -## Sitecore Connect™ for Microsoft Dynamics 365 for Sales 6.x - - -[Sitecore Connect™ for Microsoft Dynamics 365 for Sales 6.0.0](/downloads/Dynamics_CRM_Connect/6x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_600) - - - - - -## Sitecore Connect™ for Microsoft Dynamics 365 for Sales 5.x - - -[Sitecore Connect™ for Microsoft Dynamics 365 for Sales 5.0.0](/downloads/Dynamics_CRM_Connect/5x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_500) - - - - - -## Sitecore Connect™ for Microsoft Dynamics 365 for Sales 4.x - - -[Sitecore Connect for Microsoft Dynamics 365 for Sales 4.0.0](/downloads/Dynamics_CRM_Connect/4x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_400) - - - - - -## Sitecore Connect™ for Microsoft Dynamics 365 for Sales 3.x - - -[Sitecore Connect for Microsoft Dynamics 365 for Sales 3.0.0](/downloads/Dynamics_CRM_Connect/3x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_300) - - - - - -## Sitecore Connect™ for Microsoft Dynamics 365 for Sales 2.x - - -[Sitecore Connect for Microsoft Dynamics 365 for Sales 2.1.0](/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_210)\ -[Sitecore Connect for Microsoft Dynamics 365 for Sales 2.0.1](/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_201)\ -[Sitecore Connect for Microsoft Dynamics 365 for Sales 2.0](/downloads/Dynamics_CRM_Connect/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_20) - - - - - -## Dynamics CRM Connect 1.x - - -[Dynamics CRM Connect 1.4.1](/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4_1)\ -[Dynamics CRM Connect 1.4](/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_4)\ -[Dynamics CRM Connect 1.3](/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_3)\ -[Dynamics CRM Connect 1.2](/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_1_2)\ -[Dynamics CRM Connect 1.1](/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_11)\ -[Dynamics CRM Connect 1.0](/downloads/Dynamics_CRM_Connect/Dynamics_CRM_Connect_1/Dynamics_CRM_Connect_10) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_0/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_0/index.md deleted file mode 100644 index 24e98bdfc..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_0/index.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: "Dynamics CRM Security Provider 2.1.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_0.aspx ---- - -Expose CRM contacts as Sitecore users, CRM marketing lists as Sitecore roles and interact directly with Dynamics CRM. - -`Dynamics CRM Security Provider 2.1 is compatible with Sitecore Experience Platform 8.0.` - -## Downloads - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Security Provider](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Security%20Provider/2%201/Dynamics%20CRM%20Security%20Provider%202%201%200/Secure/Microsoft%20Dynamics%20CRM%20Security%20Provider%202.1%20rev.%20150403.zip) | Dynamics CRM Security Provider includes ASP.NET membership, role and profile providers. It also provides the ability for Sitecore to interact directly with Dynamics CRM. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Security Provider Update](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Security%20Provider/2%201/Dynamics%20CRM%20Security%20Provider%202%201%200/Secure/Microsoft%20Dynamics%20CRM%20Security%20Provider%202.1%20rev.%20150403%20Update.zip) |

Update Dynamics CRM Security Provider version 2.2.1 and earlier.





This is a regular Sitecore installation package. Use the Sitecore Installation Wizard to install it.



| \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_1/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_1/index.md deleted file mode 100644 index f9e51e99a..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_1/index.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: "Dynamics CRM Security Provider 2.1.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_1.aspx ---- - -Expose CRM contacts as Sitecore users, CRM marketing lists as Sitecore roles and interact directly with Dynamics CRM. - -`Dynamics CRM Security Provider 2.1 is compatible with Sitecore Experience Platform 8.0.` - -## Downloads - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Security Provider](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Security%20Provider/2%201/Dynamics%20CRM%20Security%20Provider%202%201%201/Secure/Microsoft%20Dynamics%20CRM%20Security%20Provider%202.1.1%20rev.%20170106.zip) | Dynamics CRM Security Provider includes ASP.NET membership, role and profile providers. It also provides the ability for Sitecore to interact directly with Dynamics CRM. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Security Provider Update](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Security%20Provider/2%202/Dynamics%20CRM%20Security%20Provider%202%202%202/Secure/Microsoft%20Dynamics%20CRM%20Security%20Provider%202.2.2%20rev.%20170106%20Update.zip) |

Update Dynamics CRM Security Provider version 2.2.1 and earlier.





This is a regular Sitecore installation package. Use the Sitecore Installation Wizard to install it.



| \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2/Installation_Guide.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2/Installation_Guide.md deleted file mode 100644 index 836c19813..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2/Installation_Guide.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "Installation Guide" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2/Installation_Guide ---- - -Installation instructions are included in the readme that is displayed when the package is installed on your Sitecore server. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2/Release_Notes.md deleted file mode 100644 index 179f647f4..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2/Release_Notes.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2/Release_Notes ---- - -**January 18, 2017 - released Sitecore Dynamics CRM Security Provider 2.1.2 (rev. 170118)** - -### New features & improvements - -- Fix to ensure access token can be renewed when using CRM online (143234). - - -**January 5, 2017 - released Sitecore Dynamics CRM Security Provider 2.1.1 (rev. 170105)** - -### New features & improvements - -- Compatible with Microsoft Dynamics 365. - -- Compatible with .NET Framework 4.5.2. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2/index.md deleted file mode 100644 index 33ecead25..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2/index.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Dynamics CRM Security Provider 2.1.2" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2.aspx ---- - -Expose CRM contacts as Sitecore users, CRM marketing lists as Sitecore roles and interact directly with Dynamics CRM. - -`Dynamics CRM Security Provider 2.1 is compatible with Sitecore Experience Platform 8.0.` - -## Downloads - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Security Provider](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Security%20Provider/2%201/Dynamics%20CRM%20Security%20Provider%202%201%202/Secure/Microsoft%20Dynamics%20CRM%20Security%20Provider%202.1.2%20rev.%20170118.zip) | Dynamics CRM Security Provider includes ASP.NET membership, role and profile providers. It also provides the ability for Sitecore to interact directly with Dynamics CRM. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Security Provider Update](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Security%20Provider/2%201/Dynamics%20CRM%20Security%20Provider%202%201%202/Secure/Microsoft%20Dynamics%20CRM%20Security%20Provider%202.1.2%20rev.%20170118%20Update.zip) |

Update Dynamics CRM Security Provider version 2.1.1 and earlier.





This is a regular Sitecore installation package. Use the Sitecore Installation Wizard to install it.



| - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation Guide](/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2/Installation_Guide) | Information on how to install and configure Dynamics CRM Security Provider. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_0/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_0/index.md deleted file mode 100644 index 7d8772677..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_0/index.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Dynamics CRM Security Provider 2.2.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_0.aspx ---- - -Expose CRM contacts as Sitecore users, CRM marketing lists as Sitecore roles and interact directly with Dynamics CRM. - -`Dynamics CRM Security Provider 2.2 is compatible with Sitecore Experience Platform 8.1.` - -## Downloads - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Security Provider](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Security%20Provider/2%202/Dynamics%20CRM%20Security%20Provider%202%202%200/Secure/Microsoft%20Dynamics%20CRM%20Security%20Provider%202.2.0%20rev.%20160111.zip) | Dynamics CRM Security Provider includes ASP.NET membership, role and profile providers. It also provides the ability for Sitecore to interact directly with Dynamics CRM. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_1/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_1/index.md deleted file mode 100644 index cf1abfcb5..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_1/index.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Dynamics CRM Security Provider 2.2.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_1.aspx ---- - -Expose CRM contacts as Sitecore users, CRM marketing lists as Sitecore roles and interact directly with Dynamics CRM. - -`Dynamics CRM Security Provider 2.2 is compatible with Sitecore Experience Platform 8.1.` - -## Downloads - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Security Provider](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Security%20Provider/2%202/Dynamics%20CRM%20Security%20Provider%202%202%201/Secure/Microsoft%20Dynamics%20CRM%20Security%20Provider%202.2.1%20rev.%20160420.zip) | Dynamics CRM Security Provider includes ASP.NET membership, role and profile providers. It also provides the ability for Sitecore to interact directly with Dynamics CRM. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_2/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_2/index.md deleted file mode 100644 index 616570e63..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_2/index.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: "Dynamics CRM Security Provider 2.2.2" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_2.aspx ---- - -Expose CRM contacts as Sitecore users, CRM marketing lists as Sitecore roles and interact directly with Dynamics CRM. - -`Dynamics CRM Security Provider 2.2 is compatible with Sitecore Experience Platform 8.1.` - -## Downloads - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Security Provider](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Security%20Provider/2%202/Dynamics%20CRM%20Security%20Provider%202%202%202/Secure/Microsoft%20Dynamics%20CRM%20Security%20Provider%202.2.2%20rev.%20170106.zip) | Dynamics CRM Security Provider includes ASP.NET membership, role and profile providers. It also provides the ability for Sitecore to interact directly with Dynamics CRM. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Security Provider Update](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Security%20Provider/2%202/Dynamics%20CRM%20Security%20Provider%202%202%202/Secure/Microsoft%20Dynamics%20CRM%20Security%20Provider%202.2.2%20rev.%20170106%20Update.zip) |

Update Dynamics CRM Security Provider version 2.2.1 and earlier.





This is a regular Sitecore installation package. Use the Sitecore Installation Wizard to install it.



| \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_3/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_3/index.md deleted file mode 100644 index 82796f186..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_3/index.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Dynamics CRM Security Provider 2.2.3" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_3.aspx ---- - -Expose CRM contacts as Sitecore users, CRM marketing lists as Sitecore roles and interact directly with Dynamics CRM. - -`Dynamics CRM Security Provider 2.2 is compatible with Sitecore Experience Platform 8.1.` - -## Downloads - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Security Provider](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Security%20Provider/2%202/Dynamics%20CRM%20Security%20Provider%202%202%203/Secure/Microsoft%20Dynamics%20CRM%20Security%20Provider%202.2.3%20rev.%20170118.zip) | Dynamics CRM Security Provider includes ASP.NET membership, role and profile providers. It also provides the ability for Sitecore to interact directly with Dynamics CRM. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Security Provider Update](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Security%20Provider/2%202/Dynamics%20CRM%20Security%20Provider%202%202%203/Secure/Microsoft%20Dynamics%20CRM%20Security%20Provider%202.2.3%20rev.%20170118%20Update.zip) |

Update Dynamics CRM Security Provider version 2.2.2 and earlier.





This is a regular Sitecore installation package. Use the Sitecore Installation Wizard to install it.



| - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation Guide](/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2/Installation_Guide) | Information on how to install and configure Dynamics CRM Security Provider. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_0/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_0/index.md deleted file mode 100644 index e99a450cc..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_0/index.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Dynamics CRM Security Provider 2.3.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_0.aspx ---- - -Expose CRM contacts as Sitecore users, CRM marketing lists as Sitecore roles and interact directly with Dynamics CRM. - -`Dynamics CRM Security Provider 2.3 is compatible with Sitecore Experience Platform 8.2.` - -## Downloads - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Security Provider](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Security%20Provider/2%203/Dynamics%20CRM%20Security%20Provider%202%203%200/Secure/Microsoft%20Dynamics%20CRM%20Security%20Provider%202.3.0%20rev.%20160829.zip) | Dynamics CRM Security Provider includes ASP.NET membership, role and profile providers. It also provides the ability for Sitecore to interact directly with Dynamics CRM. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_1/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_1/index.md deleted file mode 100644 index c1028527b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_1/index.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: "Dynamics CRM Security Provider 2.3.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_1.aspx ---- - -Expose CRM contacts as Sitecore users, CRM marketing lists as Sitecore roles and interact directly with Dynamics CRM. - -`Dynamics CRM Security Provider 2.3 is compatible with Sitecore Experience Platform 8.2.` - -## Downloads - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Security Provider](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Security%20Provider/2%203/Dynamics%20CRM%20Security%20Provider%202%203%201/Secure/Microsoft%20Dynamics%20CRM%20Security%20Provider%202.3.1%20rev.%20170106.zip) | Dynamics CRM Security Provider includes ASP.NET membership, role and profile providers. It also provides the ability for Sitecore to interact directly with Dynamics CRM. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Security Provider Update](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Security%20Provider/2%203/Dynamics%20CRM%20Security%20Provider%202%203%201/Secure/Microsoft%20Dynamics%20CRM%20Security%20Provider%202.3.1%20rev.%20170106%20Update.zip) |

Update Dynamics CRM Security Provider version 2.3.1 and earlier.





This is a regular Sitecore installation package. Use the Sitecore Installation Wizard to install it.



| \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_2/Installation_Guide.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_2/Installation_Guide.md deleted file mode 100644 index 41d42f271..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_2/Installation_Guide.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "Installation Guide" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_2/Installation_Guide ---- - -Installation instructions are included in the readme that is displayed when the package is installed on your Sitecore server. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_2/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_2/Release_Notes.md deleted file mode 100644 index 620ba68ec..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_2/Release_Notes.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_2/Release_Notes ---- - -**January 18, 2017 - released Sitecore Dynamics CRM Security Provider 2.3.2 (rev. 170118)** - -### New features & improvements - -- Fix to ensure access token can be renewed when using CRM online (143234). - - -**January 5, 2017 - released Sitecore Dynamics CRM Security Provider 2.3.1 (rev. 170105)** - -### New features & improvements - -- Compatible with Microsoft Dynamics 365. - -- Compatible with .NET Framework 4.5.2. - -- Updated to use new caching API added in Sitecore Experience Platform 8.2. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_2/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_2/index.md deleted file mode 100644 index 903d872df..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_2/index.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: "Dynamics CRM Security Provider 2.3.2" -description: "" -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_2.aspx ---- - -Expose CRM contacts as Sitecore users, CRM marketing lists as Sitecore roles and interact directly with Dynamics CRM. - -`Dynamics CRM Security Provider 2.3 is compatible with Sitecore Experience Platform 8.2.` - - - - Dynamics CRM Security Provider is not supported on Sitecore 9 (and greater). We have released the [source code on GitHub](https://github.com/Sitecore/Dynamics-Security-Provider) so you can modify it as needed if you need to use the connector with Sitecore 9. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Security Provider](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Security%20Provider/2%203/Dynamics%20CRM%20Security%20Provider%202%203%202/Secure/Microsoft%20Dynamics%20CRM%20Security%20Provider%202.3.2%20rev.%20170118.zip) | Dynamics CRM Security Provider includes ASP.NET membership, role and profile providers. It also provides the ability for Sitecore to interact directly with Dynamics CRM. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Dynamics CRM Security Provider Update](https://scdp.blob.core.windows.net/downloads/Dynamics%20CRM%20Security%20Provider/2%203/Dynamics%20CRM%20Security%20Provider%202%203%202/Secure/Microsoft%20Dynamics%20CRM%20Security%20Provider%202.3.2%20rev.%20170118%20Update.zip) |

Update Dynamics CRM Security Provider version 2.3.1 and earlier.





This is a regular Sitecore installation package. Use the Sitecore Installation Wizard to install it.



| - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_2/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation Guide](/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_2/Installation_Guide) | Information on how to install and configure Dynamics CRM Security Provider. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/index.md b/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/index.md deleted file mode 100644 index cb7a92724..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Dynamics_CRM_Security_Provider/index.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: "Dynamics CRM Security Provider" -description: "Expose CRM contacts as Sitecore users, CRM marketing lists as Sitecore roles and interact directly with Dynamics CRM." -origin: https://dev.sitecore.net/Downloads/Dynamics_CRM_Security_Provider ---- - - - -## Dynamics CRM Security Provider 2.3 - - -[Dynamics CRM Security Provider 2.3.2](/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_2)\ -[Dynamics CRM Security Provider 2.3.1](/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_1)\ -[Dynamics CRM Security Provider 2.3.0](/downloads/Dynamics_CRM_Security_Provider/2_3/Dynamics_CRM_Security_Provider_2_3_0) - - - - - -## Dynamics CRM Security Provider 2.2 - - -[Dynamics CRM Security Provider 2.2.3](/downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_3)\ -[Dynamics CRM Security Provider 2.2.2](/downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_2)\ -[Dynamics CRM Security Provider 2.2.1](/downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_1)\ -[Dynamics CRM Security Provider 2.2.0](/downloads/Dynamics_CRM_Security_Provider/2_2/Dynamics_CRM_Security_Provider_2_2_0) - - - - - -## Dynamics CRM Security Provider 2.1 - - -[Dynamics CRM Security Provider 2.1.2](/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_2)\ -[Dynamics CRM Security Provider 2.1.1](/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_1)\ -[Dynamics CRM Security Provider 2.1.0](/downloads/Dynamics_CRM_Security_Provider/2_1/Dynamics_CRM_Security_Provider_2_1_0) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/EXM_Dedicated_Dispatch_Server/1x/EXM_Dedicated_Dispatch_Server_103/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/EXM_Dedicated_Dispatch_Server/1x/EXM_Dedicated_Dispatch_Server_103/Release_Notes.md deleted file mode 100644 index 2a9ddfc4a..000000000 --- a/apps/devportal/data/markdown/pages/downloads/EXM_Dedicated_Dispatch_Server/1x/EXM_Dedicated_Dispatch_Server_103/Release_Notes.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/EXM_Dedicated_Dispatch_Server/1x/EXM_Dedicated_Dispatch_Server_103/Release_Notes ---- - -**June 2021 - Released Sitecore Email Exchange Manager DDS 1.0.3** - -This is initial release of EXM DDS. - -Sitecore EXM DDS includes: - -- Pre-configured asset image for Kubernetes and Docker support. -- Dockerfile instructions to update CM and DDS roles. - -**Note** -Only 1 DDS is supported in containers at this time. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/EXM_Dedicated_Dispatch_Server/1x/EXM_Dedicated_Dispatch_Server_103/index.md b/apps/devportal/data/markdown/pages/downloads/EXM_Dedicated_Dispatch_Server/1x/EXM_Dedicated_Dispatch_Server_103/index.md deleted file mode 100644 index adcba2e6b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/EXM_Dedicated_Dispatch_Server/1x/EXM_Dedicated_Dispatch_Server_103/index.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: "EXM Dedicated Dispatch Server 1.0.3" -description: "" -origin: https://dev.sitecore.net/Downloads/EXM_Dedicated_Dispatch_Server/1x/EXM_Dedicated_Dispatch_Server_103.aspx ---- - -This page contains all the resources for EXM Dedicated Dispatch Server 1.0.3. - -The EXM Dedicated Dispatch Server provides container support for DDS (Dedicated Dispatch Servers), speeding up the message generation and sending process. - -## Download Options - - | Resource | Description | - | --- | --- | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/dds%2F1.0.3.00012.75) | The Sitecore Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore in development and production container environments. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/EXM_Dedicated_Dispatch_Server/1x/EXM_Dedicated_Dispatch_Server_103/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/exm/100/email-experience-manager/en/using-dedicated-email-dispatch-servers.html) | Read information about Dedicated Dispatch Servers on the Doc site. | - | [Module Reference](https://doc.sitecore.com/developers/101/developer-tools/en/sitecore-module-reference.html) | Reference for the Dedicated Dispatch Server Docker asset image and the Sitecore runtime Dockerfile instructions. | - | [Installation Guide](https://doc.sitecore.com/developers/exm/101/email-experience-manager/en/build-a-dedicated-email-dispatch-server-with-an-asset-image.html) | Instructions on how to build a dedicated email dispatch server via an asset image. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/EXM_Dedicated_Dispatch_Server/index.md b/apps/devportal/data/markdown/pages/downloads/EXM_Dedicated_Dispatch_Server/index.md deleted file mode 100644 index 5e5b55689..000000000 --- a/apps/devportal/data/markdown/pages/downloads/EXM_Dedicated_Dispatch_Server/index.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "EXM Dedicated Dispatch Server" -description: "The EXM Dedicated Dispatch Server provides container support for DDS (Dedicated Dispatch Servers), speeding up the message generation and sending process." -origin: https://dev.sitecore.net/Downloads/EXM_Dedicated_Dispatch_Server.aspx ---- - - - -## EXM Dedicated Dispatch Server 1.x - - -[EXM Dedicated Dispatch Server 1.0.3](/downloads/EXM_Dedicated_Dispatch_Server/1x/EXM_Dedicated_Dispatch_Server_103) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Initial_Release/Release_Notes.md deleted file mode 100644 index d3ae628be..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,152 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Initial_Release/Release_Notes ---- - -**August 2017 – released Sitecore Email Experience Manager 3.5 (rev. 170810)** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -## Highlights - -- PaaS Support for Azure -- Reporting dashboard improvements -- Invalid recipient reporting and handling -- Custom tokens are available within API -- Message List and Performance Enhancements -- Time Format has been standardized -- Improved click handler support for multi-site and multi-language -- 80+ bug fixes - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Email validation and URL validation is now done consistently across EXM by the new email and url RegEx validators. You can configure the new `emailRegexValidator` and `urlRegexValidator` settings in the `Sitecore.EmailExperience.Core.config` file. | | 128001 | - | A link to a more detailed report has been added to the `Reporting Overview` page. | | 129857 | - | You can now use the client API to specify custom tokens. You can, for example, send automated messages with custom tokens. | | 101226 | - | The `ECM Users` and `ECM Advanced Users` roles have been renamed to `EXM Users` and `EXM Advanced Users`. | | 113316 | - | The `Insert Token` dialog has been improved. | | 35926 | - | The `Subscription` message type has been removed. | | 127021 | - | The `One-time` and `Triggered` message types have been renamed to `Regular` and `Automated`. | | 134938 | - | The reporting lists can now be sorted. | | 130413 | - | It is now possible to use the new `EXM.RendererUrl` setting to configure the RendererUrl. | | 58565 | - | You can now replace the default recipient manager. | | 138165 | - | The UI of the `Attachments` dialogs has been improved. | | 135748 | - | The `Confirmation` dialog is broken when the recipients list is empty. | | 133005 | - | Internal EXM endpoints have been made secure. | | 137475 | - | A new list has been added that shows the recipients which EXM failed to dispatch to for a specific campaign. | | 143091 | - | We now support segmented lists with empty emails. | | 121702 | - | Improved support for cross site links in EXM messages. To support more complex scenarios than Manager Roots alone allow, a new global repository of `Hostname Mapping` items has been added. This is shared across Manager Roots and defines extra mappings of `Server URLs` to Preview and Public URLs. | | 131797 | - | A new `EXM.TasksPath` setting has been added that allows you to specify where task items are stored. | | 58669 | - | EXM no longer requires any of the files that are stored in the /sitecore folder on a CD server. | | 137496 | - | EXM no longer stores files in the /sitecore folder on a CD server. | | 137496 | - | You no longer need to be logged in to render the message body. A new setting, `Renderer User`, has been added to the Manager Root, that allows the Context User to be changed for editing, previewing, delivering, and viewing online. | | 143210 | - | If a campaign failed to send email to some recipients, for example, because the email address could not be validated, the message will now move to the `Sent` state rather than the `Paused` state. | | 143091 | - | A new EXM site has been added to the sites that allows EXM to control, for example, caching. | | 149998 | - | All dates and times are now displayed in UTC. | | 139423 | - | Dates and times are now consistent across all of EXM. Dates and times now respect the Sitecore configuration settings and the culture preferences of the logged in user. | | 162461 | - | The Sitecore Email Cloud configuration defaults have been updated. | | 150892 | - | Time and timezone have been added to the message info panel. | | 70397 | - | Message lists now use aggregated data and this improves the time it takes to load them. As a side effect the data is not shown in real-time. | | 138406 | - | The complete DKIM record is now shown for a sending domain. | | 143196 | - | The email-opened tracking image element now has an alt attribute. | | 152082 | - | When you run Email Preview or Spam Check, the changes are now saved automatically. | | 150291 | - | DKIM is now verified automatically. | | 158140 | - | A `Failed Recipients` card has been added to the campaign report. | | 154598 | - | On the dashboard, the `Recipient activity` pie chart has been replaced with `Sent` and `Delivered` data. | | 159062 | - | The icons have been removed from the `Landing pages` report card. | | 159069 | - | The UI of the `Domain details` dialog has been improved. | | 159524 | - | If there is an error in the `RedirectUrl` pipeline, the click handler now redirects to the original link. | | 167575 | - | HTTP headers are now set for the tracking pixel. | | 166436 | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | On the `Landing Page Performance` tab, in the Landing pages section, the links in the events list open in the same window. | | 129831 | - | The web database that the `SaveTouchPointRecord` pipeline processor uses is hardcoded. | | 120027 | - | Some items do not have localizable titles. | | 130649 | - | When you preview a message with a large message body, scroll bars are displayed. | | 127837 | - | In reports, quarterly trends are not rounded to whole numbers. | | 131573 | - | Some texts in the UI are not displayed correctly in non-English languages. | | 130647 | - | In a message list, the delete button is active even when no message is selected. | | 127483 | - | External links are not HTML decoded. | | 125487, 129858 | - | On the `Recipient Activity` tab, in the `Open and click rates` list, the values in the `Event` and `Landing pages` columns are not searchable. | | 129867 | - | Location is not searchable on the `Value and engagement` tab. | | 129870 | - | The text on the `Subscription` page is inconsistent with the rest of EXM. | | 130897 | - | In the Experience Editor, the `Add here` button does not work in IE. | | 130703 | - | The `Save` button does not always become active when a user edits the content of a text box. | | 35875 | - | The `Time of day` list does not contain Sunday. | | 136473 | - | The subject of a message is not saved if the `Set Page Title` rendering is not present. | | 135248 | - | The cursor jumps to end of the search field when you press a key. | | 135568 | - | Message Context contains inconsistent property names. | | 134773 | - | The `Subscription Sublayout Parameters` template does not find Manager Roots that are not stored under the `Home` item. | | 130653 | - | Token values that contain a known token key cause an infinite loop. | | 135571 | - | It is not possible to specify multiple notification emails. | | 35947 | - | The Message body collapses when a scheduled campaign delivery is cancelled. | | 137200 | - | In reports, the Landing page value displays a query string and/or an absolute page path. | | 136224 | - | Incorrect recipient numbers are logged when some recipients are skipped. | | 138331 | - | Links do not work when an anonymous user doesn’t have read access to the item. | | 137204 | - | Dates in the past are available in the date pickers. | | 35968 | - | On the `Review` tab, the `Preview` and `Spam Check` buttons are enabled after a campaign has been sent. | | 139127 | - | The `Confirmation` dialog is broken when the recipients list is empty. | | 139223 | - | Clicks on external and internal links in the online version of an email are not registered. | | 142256 | - | The reporting data about landing pages is missing sometimes. | | 145853 | - | The `Subscription Confirmation` redirect link is broken. | | 146550 | - | In the EXM dashboard, in the `Value and visits` report, `Month` is defined incorrectly. | | 147037 | - | Url redirection is case sensitive. | | 148502 | - | `Email Preview` and the `Spam Check` do not work for Automated email campaigns. | | 144283 | - | In the Content Editor, the `Open Manager Root` button is not visible. | | 150904 | - | During `Bounce and Spam` synchronization with the Sitecore Email Cloud provider, exceptions appear in the EDS log on the Dispatching role. | | 144906 | - | EXM loads css files with an exclusive lock. | | 151158 | - | An `Email Test Definition` is created every time an AB test is scheduled. | | 145784 | - | An incorrect error message appears if you save the default settings when the email field is empty. | | 144172 | - | Images are counted as clicks when `EmbedImages` is disabled, or the image is external. | | 151478 | - | Aggregation dimensions mark an interaction as a click even when there is no click event in the interaction. | | 152144 | - | The `Redirect` handler adds the EXM custom values for duplicate interactions. | | 152130 | - | In EXM, in the `Create` menu, in the `Create List` column, the `Recipient list from file` and `Empty recipient list` commands do not work. | | 145793 | - | The `website\images\1x1.gif` image is accessed during dispatch, and often causes an IO exception to be thrown. | | 146738 | - | If a link is clicked very quickly, a SQL deadlock can occur. | | 153848 | - | Dispatch hangs if a requested resource is not found. | | 152028 | - | The domain of the notification email is not validated properly by the email cloud provider. | | 144286 | - | `CustomPersonTokens` are not thread safe. | | 151324 | - | Bounce times are not aligned with the other time related reporting data. | | 144608 | - | The comparison of EcmId is case-sensitive. | | 151629 | - | Marketing campaign items created for Email campaigns contain an invalid default value. | | 150068 | - | In IE 11, a modal dialog in the message body cannot be reopened. | | 155407 | - | In the reports, bounced and unsubscribed percentage rates are displayed in green and not red, if there is an increase. | | 159059 | - | The `From name` and `email` are not allowed to exceed 254 characters. | | 42522 | - | `From name` is not encoded correctly. | | 155609 | - | The recipient counter changes if a segmented list is added to an email campaign, and the page is refreshed. | | 150067 | - | The `Sending Disabled` message is not shown when the `No Send` setting is enabled. | | 37998 | - | The `Exclude from reports` setting doesn't exclude campaigns that contain registered click events. | | 149688 | - | When a user subscribes to the same list twice in a row, an exception is thrown. | | 144263 | - | The `ReviewHistoryWatcher` rendering does not work. | | 146748 | - | An odd character is added to the name of a new variant of an email campaign. | | 149609 | - | An exception is thrown when scheduling an email campaign whose name contains more than 91 characters. | | 145071 | - | Countries are not displayed on the `Location card` report. | | 126494 | - | Preview does not show the selected recipient. | | 60398 | - | The `Anchor` property is stripped from links. | | 151495 | - | The `Most Engaging` tab has been added to the `Top Campaigns` card in the reporting dashboard. | | 159072 | - | Token are not replaced in service messages. | | 161617 | - | In the `Add Attachment` dialog, an image that is attached to a message is displayed as `broken image`. | | 58716 | - | `Email Preview` and `Spam Check` do not return any results if you do not specify an `Include list`. | | 139651 | - | SQL deadlocks can occur during large dispatches. | | 161988 | - | When you click a menu item, a recipient count request is sent to List Manager. | | 161682 | - | Service campaigns are not shown in the `Automated campaigns` list. | | 154534 | - | Links in simple HTML campaigns are not transformed correctly. | | 161647 | - | The EXM log files do not display all the expected information about roles. | | 145668 | - | Special characters are not allowed in the `From` email. | | 161584 | - | An `OutOfMemoryError` occurs on the Solr server during queuing. | | 161033 | - | The thumbnail is missing on the `General` tab. | | 161624 | - | Links in messages are always opened in English. | | 165440 | - | The `RegisterEmailOpened.aspx` page is added to the statistics. | | 163761 | - | Port 25 is added to mailto hyperlinks. | | 166207 | - | The `RedirectUrlPage.aspx` page is added to the statistics. | | 163737 | - | External images/links are sent as .ashx attachments if `Embed Images` is enabled on the Manager Root. | | 161609 | - | If an error occurs when tracking a session, it can cause problems during aggregation. | | 164853 | - | Page URLs defined on the Manager Root, such as `Final Confirmation Page`, are sometimes resolved incorrectly. | | 177536 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Initial_Release/index.md deleted file mode 100644 index f539f3427..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Initial_Release/index.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: "Email Experience Manager 3.5 Initial Release" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Initial_Release.aspx ---- - -This page contains all the resources for **Email Experience Manager 3.5 rev. 170810 (Initial Release)**. - - - This version of the Email Experience Manager only runs on **Sitecore Experience Platform 8.2 rev. 170728 (8.2 Update-5)**. - - - - - **Azure PaaS installations** -• A critical hotfix is available for Azure PaaS installations of EXM 3.5. Please read the following KB article for more information: [https://kb.sitecore.net/articles/599205](https://kb.sitecore.net/articles/599205) - -**Statistics loss after upgrade** -• Please be aware that if you upgrade from EXM 3.0-3.2 to EXM 3.3 or later, the Reporting architecture has been updated and older reporting data is no longer supported. -• If you need your historical reporting data, you should **[extract and migrate](https://doc.sitecore.net/email_experience_manager/reporting/extract_data_from_earlier_versions_of_exm_to_create_historical_reports)** it to a separate database where you can analyze it with your chosen Business Intelligence (BI) tool. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Email Experience Manager](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/35/Email%20Experience%20Manager%2035%20Initial%20Release/Secure/Email%20Experience%20Manager%203.5.0%20rev.%20170810%20NOT%20SC%20PACKAGE.zip) | Download this package to install the Sitecore Email Experience Manager 3.5 rev. 170810. The EXM installation package includes seven zip packages – the Email Experience Manager, four zip files that match specific server roles, and two zip files for the sample newsletter. For more information on how to install the EXM module, see the EXM Installation Guide. | - | [Packages for EXM0 configuration](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/35/Email%20Experience%20Manager%2035%20Initial%20Release/Secure/Email%20Experience%20Manager%203.5.0%20rev.%20170810%20(EXM0%20WDP%20Packages).zip) | Web deploy packages for EXM0/Single instance configuration on Azure AppService. | - | [Packages for EXM1 configuration](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/35/Email%20Experience%20Manager%2035%20Initial%20Release/Secure/Email%20Experience%20Manager%203.5.0%20rev.%20170810%20(EXM1%20WDP%20packages).zip) | Web deploy packages for EXM1 configuration on Azure App Services. The packages contains 5 server roles: Content Management, Content Delivery, Analytics Processing, Email Processing and Reporting. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [EXM Update Package](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/35/Email%20Experience%20Manager%2035%20Initial%20Release/Secure/Email%20Experience%20Manager%203.5.0%20rev.%20170810%20update%20package%20(NOT%20SC%20PACKAGE).zip) | Download the files you need to upgrade from EXM 3.4 to EXM 3.5 Initial. | - | [EXM Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/35/Email%20Experience%20Manager%2035%20Initial%20Release/Secure/EXM-Upgrade-Instructions-35.pdf) | Step by step guide to upgrade EXM 3.4 to EXM 3.5 Initial. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Initial_Release/Release_Notes) | Read the list of features, improvements, and fixes that have been implemented in this release. | - | [Known Issues](https://kb.sitecore.net/articles/149565) | Choose this link to access the Sitecore Knowledge Base. | - | [EXM Installation Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/35/Email%20Experience%20Manager%2035%20Initial%20Release/Secure/EXM-Installation-Guide-35.pdf) | The installation procedures for the Email Experience Manager module. | - | [Documentation](https://doc.sitecore.net/email_experience_manager) | Documentation for the EXM module. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update1/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update1/Release_Notes.md deleted file mode 100644 index 8f40f43d5..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update1/Release_Notes.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update1/Release_Notes ---- - -**November 2017 – released Sitecore Email Experience Manager 3.5 Update 1 (rev. 171103)** - -This an update. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | You cannot create `Sent` interactions in Emulation mode. | | 177381 | - | EXM does not apply the proxy settings during the dispatch process. | | 175607 | - | When you use Azure Search, email dispatch stops after you send a message to 1,000 contacts. | | 184958 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update1/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update1/index.md deleted file mode 100644 index 09491df3a..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update1/index.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: "Email Experience Manager 3.5 Update-1" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update1.aspx ---- - -This page contains all the resources for **Email Experience Manager 3.5 rev. 171103 (Update-1)**. - - - This version of the Email Experience Manager only runs on **Sitecore Experience Platform 8.2 rev. 171121 (8.2 Update-6)**. - - - - - **Statistics loss after upgrade** -• Please be aware that if you upgrade from EXM 3.0-3.2 to EXM 3.3 or later, the Reporting architecture has been updated and older reporting data is no longer supported. -• If you need your historical reporting data, you should **[extract and migrate](https://doc.sitecore.net/email_experience_manager/reporting/extract_data_from_earlier_versions_of_exm_to_create_historical_reports)** it to a separate database where you can analyze it with your chosen Business Intelligence (BI) tool. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Email Experience Manager](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/35/Email%20Experience%20Manager%2035%20Update1/Secure/Email%20Experience%20Manager%203.5.1%20rev.%20171103%20NOT%20SC%20PACKAGE.zip) | Download this package to install the Sitecore Email Experience Manager. The EXM installation package includes seven zip packages – the Email Experience Manager, four zip files that match specific server roles, and two zip files for the sample newsletter. For more information on how to install the EXM module, see the EXM Installation Guide. | - | [Packages for EXM0 configuration](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/35/Email%20Experience%20Manager%2035%20Update1/Secure/Email%20Experience%20Manager%203.5.1%20rev.%20171103%20(EXM0%20WDP%20Packages).zip) | Web deploy packages for EXM0/Single instance configuration on Azure AppService. | - | [Packages for EXM1 configuration](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/35/Email%20Experience%20Manager%2035%20Update1/Secure/Email%20Experience%20Manager%203.5.1%20rev.%20171103%20(EXM1%20WDP%20Packages).zip) | Web deploy packages for EXM1 configuration on Azure App Services. The packages contains 5 server roles: Content Management, Content Delivery, Analytics Processing, Email Processing and Reporting. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [EXM Update Package](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/35/Email%20Experience%20Manager%2035%20Update1/Secure/Email%20Experience%20Manager%203.5.1%20rev.%20171103%20(update%20package).zip) | Download the files you need to upgrade from EXM 3.5 Initial to EXM 3.5 Update-1. | - | [EXM Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/35/Email%20Experience%20Manager%2035%20Update1/Secure/EXM-Upgrade-Instructions-35-Update1.pdf) | Step by step guide to upgrade EXM 3.5 Initial to EXM 3.5 Update-1. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update1/Release_Notes) | Read the list of features, improvements, and fixes that have been implemented in this release. | - | [Known Issues](https://kb.sitecore.net/articles/149565) | Choose this link to access the Sitecore Knowledge Base. | - | [EXM Installation Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/35/Email%20Experience%20Manager%2035%20Update1/Secure/EXM-Installation-Guide-35-Update1.pdf) | The installation procedures for the Email Experience Manager module. | - | [Documentation](https://doc.sitecore.net/email_experience_manager) | Documentation for the EXM module. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update2/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update2/Release_Notes.md deleted file mode 100644 index 5baf85b1a..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update2/Release_Notes.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update2/Release_Notes ---- - -**May 2018 – released Sitecore Email Experience Manager 3.5 Update 2 (rev. 180411)** - -This an update. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Added support for the `Right to be forgotten`.`` | | 202771 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update2/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update2/index.md deleted file mode 100644 index 507a8beda..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update2/index.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: "Email Experience Manager 3.5 Update-2" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update2.aspx ---- - -This page contains all the resources for **Email Experience Manager 3.5 rev. 180411 (Update-2)**. - - - This version of the Email Experience Manager only runs on **Sitecore Experience Platform 8.2 rev. 180406 (8.2 Update-7)**. - - - - - **Statistics loss after upgrade** -• Please be aware that if you upgrade from EXM 3.0-3.2 to EXM 3.3 or later, the Reporting architecture has been updated and older reporting data is no longer supported. -• If you need your historical reporting data, you should **[extract and migrate](https://doc.sitecore.net/email_experience_manager/reporting/extract_data_from_earlier_versions_of_exm_to_create_historical_reports)** it to a separate database where you can analyze it with your chosen Business Intelligence (BI) tool. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Email Experience Manager](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/35/Email%20Experience%20Manager%2035%20Update2/Secure/Email%20Experience%20Manager%203.5.2%20rev.%20180411%20NOT%20SC%20PACKAGE.zip) | Download this package to install the Sitecore Email Experience Manager. The EXM installation package includes seven zip packages – the Email Experience Manager, four zip files that match specific server roles, and two zip files for the sample newsletter. For more information on how to install the EXM module, see the EXM Installation Guide. | - | [Packages for EXM0 configuration](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/35/Email%20Experience%20Manager%2035%20Update2/Secure/Email%20Experience%20Manager%203.5.2%20rev.%20180411%20(EXM0%20WDP%20Packages).zip) | Web deploy packages for EXM0/Single instance configuration on Azure AppService. | - | [Packages for EXM1 configuration](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/35/Email%20Experience%20Manager%2035%20Update2/Secure/Email%20Experience%20Manager%203.5.2%20rev.%20180411%20(EXM1%20WDP%20Packages).zip) | Web deploy packages for EXM1 configuration on Azure App Services. The packages contains 5 server roles: Content Management, Content Delivery, Analytics Processing, Email Processing and Reporting. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [EXM Update Package](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/35/Email%20Experience%20Manager%2035%20Update2/Secure/Email%20Experience%20Manager%203.5.2%20rev.%20180411%20(update%20package).zip) | Download the files you need to upgrade from EXM 3.5 Update-1 to EXM 3.5 Update-2. | - | [EXM Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/35/Email%20Experience%20Manager%2035%20Update2/Secure/EXM-Upgrade-Instructions-35-Update2.pdf) | Step by step guide to upgrade EXM 3.5 Initial to EXM 3.5 Update-1. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update2/Release_Notes) | Read the list of features, improvements, and fixes that have been implemented in this release. | - | [Known Issues](https://kb.sitecore.net/articles/149565) | Choose this link to access the Sitecore Knowledge Base. | - | [EXM Installation Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/35/Email%20Experience%20Manager%2035%20Update2/Secure/EXM-Installation-Guide-35-Update2.pdf) | The installation procedures for the Email Experience Manager module. | - | [Documentation](https://doc.sitecore.net/email_experience_manager) | Documentation for the EXM module. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/90/Email_Experience_Manager_in_Sitecore_90_Update1/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/90/Email_Experience_Manager_in_Sitecore_90_Update1/index.md deleted file mode 100644 index a3c6b024f..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/90/Email_Experience_Manager_in_Sitecore_90_Update1/index.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: "Email Experience Manager in Sitecore 9.0 Update-1" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/90/Email_Experience_Manager_in_Sitecore_90_Update1.aspx ---- - -This page contains all the resources for **EXM in Sitecore 9.0 rev. 171219 (Update-1)**. - - - - **EXM is now included with Sitecore** -• With Sitecore 9.0 Update-1, EXM does not need to be installed as a separate module. -• You can only migrate EXM to Sitecore XP 9.0 Update 1. It is not part of the Sitecore XP 9.0 Update 1 upgrade procedure. -• Find the relevant resources for migrating EXM 3.5 to Sitecore 9.0 Update-1 below. - - - - - **Critical hotfix available** -• A critical hotfix is available for EXM on Sitecore 9.0 Update-1. Please read the following KB article for more information: [https://kb.sitecore.net/articles/467253](https://kb.sitecore.net/articles/467253) - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Package Designer XML manifest](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/90/Email%20Experience%20Manager%20in%20Sitecore%2090%20Update1/Secure/SC%20Email%20Experience%20Manager%20Content%20Migration.xml) | A sample XML manifest for the Package Designer and Installation Wizard. | - | [Migrate Lists admin script](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/90/Email%20Experience%20Manager%20in%20Sitecore%2090%20Update1/Secure/MigrateLists.aspx) | An administration script that upgrades legacy contact lists to the new Sitecore 9.0 format and deploys them to xConnect. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Migration guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/90/Email%20Experience%20Manager%20in%20Sitecore%2090%20Update1/Secure/Sitecore%20EXM%20Data%20Migration%20Guide.pdf) | This guide outlines how to migrate Content, Files, Data, and Analytics to a new Sitecore 9.0 Update-1 installation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/90/Email_Experience_Manager_in_Sitecore_90_Update2/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/90/Email_Experience_Manager_in_Sitecore_90_Update2/index.md deleted file mode 100644 index d9850bd01..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/90/Email_Experience_Manager_in_Sitecore_90_Update2/index.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: "Email Experience Manager in Sitecore 9.0 Update-2" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/90/Email_Experience_Manager_in_Sitecore_90_Update2.aspx ---- - -This page contains all the resources for **EXM in Sitecore 9.0 rev. 180604 (Update-2)**. - - - - **EXM is now included with Sitecore** -• With Sitecore 9.0 Update-1 and onwards, EXM does not need to be installed as a separate module. -• You can only migrate EXM to Sitecore 9.0 Update-1 or later. It is not part of the upgrade procedure when upgrading from Sitecore 8.x. From Sitecore 9.0 Update-1 and later it is part of the upgrade procedure. -• Find the relevant resources for migrating EXM 3.5 to Sitecore 9.0 Update-2 below. -**Release information** -• EXM with Sitecore 9.0 Update-2 now supports Mongo. -• For GDPR support please see our [guide](https://kb.sitecore.net/articles/947205). - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Migrate Lists admin script](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/90/Email%20Experience%20Manager%20in%20Sitecore%2090%20Update1/Secure/MigrateLists.aspx) | An administration script that upgrades legacy contact lists to the new Sitecore 9.0 format and deploys them to xConnect. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Migration guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/90/Email%20Experience%20Manager%20in%20Sitecore%2090%20Update1/Secure/Sitecore%20EXM%20Data%20Migration%20Guide.pdf) | This guide outlines how to migrate Content, Files, Data, and Analytics to a new Sitecore 9.0 Update-2 installation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Initial_release/Version_Resources/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Initial_release/Version_Resources/Release_Notes.md deleted file mode 100644 index 99ef15203..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Initial_release/Version_Resources/Release_Notes.md +++ /dev/null @@ -1,135 +0,0 @@ ---- -title: "Release notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Initial_release/Version_Resources/Release_Notes.aspx ---- - -### Release History for Email Experience Manager - formerly Email Campaign Manager (ECM) - -### April 30, 2015 - -Email Experience Manager (EXM) 3.0 rev. 150429 is released. - -##### Compatibility - -EXM 3.0 rev. 150429 (Update-3) is compatible with Sitecore Experience Platform rev. 150427 (8.0 Update-3) - -##### Resolved issues - -- When customers dispatched email messages synchronously on several threads, performance was severely degraded. This has been improved with several performance fixes. (431762) - -- The dispatch pipeline was often aborted if there was an error, even if the error was non-critical. This has been changed so the dispatch pipeline is now paused instead, allowing customers to fix the problem and resume the dispatch. (434929) - -- There was an error when viewstate failed to load in the Select Role dialog. This has been fixed. (430969) - -- There have been numerous UI, UX, and stability fixes to the EXM module. - - -### February 26, 2015 - -Email Experience Manager (EXM) 3.0 rev. 150223 is released. - -##### Compatibility - -EXM 3.0 rev. 150223 (Update-2) is compatible with Sitecore Experience Platform rev. 150223 (8.0 Update-2). - -##### Resolved issues - -- The A/B recurring tests started regardless of the interval that was selected. This has been fixed (38439) - -- The message performance report did not have data even though the analytics data and Funnel homepage showed data. This has been fixed. (38431) - -- Changes in the message subject were not being saved automatically when the dispatch process was started. This has been fixed. (37873) - -- The external links from test messages did not open in a distributed environment. This has been fixed. (38394) - -- The online version of messages was not shown. This has been fixed. (38779) - -- The import of contacts did not work as expected in a scaling environment. This has been fixed. (37297) - -- The Engagement Plan Supervisor trigger action failed. This has been fixed. (37098) - -- Unsubscribed user visits were counted as visits in message performance. This has been fixed. (37713) - -- The emulation of send messages did not work for triggered messages. This has been fixed. (35150) - -- A/B test messages could not be scheduled for specified activation start date and activation end dates. This has been fixed. (37726) - - -### January 30, 2015 - -Email Experience Manager (EXM) 3.0 rev. 150126 is released. - -##### Compatibility - -EXM 3.0 rev. 150126 (Update-1) is compatible with Sitecore Experience Platform 8.0 rev. 150121 (8.0 Update-1). - -##### Resolved issues - -- Variants were not sent in equal numbers for A/B testing dispatch on certain dedicated servers setups. This has been fixed. (25686) - -- If a list was locked, A/B testing on messages using that list did not start. This has been fixed. (25717) - -- The send email campaign and edit email audience actions were not triggered from the state. This has been fixed. (23737) - -- Creating a schedule or a recurring schedule with Moscow time did not schedule the message. This has been fixed. (25653) - -- Canceling a recurring schedule of a message after it had been sent was not possible. Instead, the user had to delete the scheduled item in the Content Editor. This has been fixed.(25652) - -- Two Alternative Text fields were displayed when the user inserted a token in a hidden Alt text field. This has been fixed. (25645) - -- The message body was not refreshed after editing if changes in the Subject field were not saved. This has been fixed. (25268) - -- Scheduled triggered messages for activation didn't show the message in the Scheduled messages list. This has been fixed. (25202) - -- New presentation components could not be added to the message in the Experience Editor. This has been fixed. (23497) - -- The Export message recipient’s action did not work correct. This has been fixed. (25697) - -- Sender details were not disabled for messages created based on the Subscription message template. This has been fixed. (15401) - - -### December 19, 2014 - -Email Experience Manager (EXM) 3.0 rev. 141217 is released. - -##### Compatibility - -EXM 3.0 rev. 141217 (Initial Release) is compatible with Sitecore Experience Platform rev. 141212 (8.0 Initial Release). - -##### Resolved issues and improvements - -EXM 3.0 is built on the new SPEAK framework. - -- The List Manager is now integrated and uses contact lists and segmented lists to send emails. - -- User-defined opt-in and opt-out lists for messages have been added to give better control on subscriptions. - -- The ability to set a global opt-out list per root manager has been introduced. This gives better flexibility to manage the global opt-out list and allows more control over opt-out list for global business scenarios. - -- The Recurring dispatches feature has been added, allowing new business use cases and a number of new email marketing scenarios. For example, birthday campaigns that are sent out to a segmented list on their birthday, or a renewal campaign that is sent out to all customers when their subscription is about to expire. - -- Offers the ability to select a list and instruct EXM to remove bounces or unsubscribers from it, helping to deliver better conformance to subscription requirements. - -- All dates are now stored in UTC and displayed in local client time. - -- Dispatching and personalization now use a unified recipient model instead of a specific source. - -- A new Create menu has been introduced for improved usability. - -- Message tasks now use lazy loading to load the content of the message data. This results in faster message loading and helps users be more productive. - -- Users can now set the recipient list for triggered messages instead of automatic creation. - -- When emails are generated, the Email channel is now automatically added to the trackable email links. - -- The following pipelines have been introduced for a better and flexible recipient model: - - -- getSitecoreUserRecipient  - -- getXdbContactRecipient - -- updateContactInfo - -- handleUndeliveredMessage. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Initial_release/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Initial_release/index.md deleted file mode 100644 index 03823b280..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Initial_release/index.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: 'Email Experience Manager 3.0 Initial release' -description: '' -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Initial_release ---- - - - - - -Looking for **a different update**? See [all available EXM 3.0 updates](/downloads/Email_Experience_Manager/Email_Experience_Manager_30). - - - - - - **Consider Upgrading to EXM 3.4 today** -• Sitecore no longer recommends deployment of Email Experience Manager (EXM) version 3.3 or any earlier versions of EXM in a production environment. With version 3.4, Sitecore has moved towards an architecture that separates major components such as message delivery, reporting, and suppression services into dedicated service tiers. These changes provide performance improvements to suppression list lookup and data reporting. Please consider upgrading to the latest version. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - -**Dyn Deprecation** -• After November 1, 2017, the Sitecore Email Delivery (Dyn) service will no longer be available (**[KB article](https://kb.sitecore.net/articles/669456)**). For customers unable to migrate to Sitecore 8.2, you will be obliged to begin using a Custom SMTP (MTA) solution on your existing version. The use of Dyn to assist in the email delivery process is no longer a necessity in the use of EXM 3.4 and above. -• Sitecore has developed a new **[Sitecore Email Cloud](https://doc.sitecore.net/email_experience_manager/configuring_the_delivery_process/message_transfer_agent/the_sitecore_email_cloud_compared_to_the_custom_smtp)** service, replacing the Email Delivery service. Customers will benefit from greater scalability, faster email delivery, global coverage and intensive email support. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - - - -## Downloads - -| Resource | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | -| [Email Experience Manager](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/8%200/Sitecore%20Experience%20Platform%208%200/Secure/Email%20Experience%20Manager%203.0%20rev.%20141215.zip) | Download this package to install Sitecore Email Experience Manager 3.0 rev. 141215 | - -## Upgrades - -| Resource | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- | -| [EXM Update Package](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2030/Email%20Experience%20Manager%2030%20Initial%20release/Secure/Email%20Experience%20Manager%2030%20rev%20141215%20Update%20Package.zip) | Download the files you need to upgrade from ECM 2.2 for Sitecore 7.5 to EXM 3.0 for Sitecore Experience Platform 8
| -| [EXM Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2030/Email%20Experience%20Manager%2030%20Initial%20release/Secure/EXM3%200%20Upgrade%20Instructions%20from%20ECM%202%202%20to%20ECM%203%200.pdf) | Step by step guide to upgrade EXM 2.2 to the EXM 3.0. | - -## Release Information - -| Resource | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| [Release notes](/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Initial_release/Version_Resources/Release_Notes#141217) | Read the list of features, improvements, and fixes that have been implemented in this release.
| -| [Known issues](https://kb.sitecore.net/articles/149565) | Choose this link to access the Sitecore Knowledge Base. | -| [EXM Installation Guide](/~/media/FAD5DEB3A43D4D968AF57EA206AF097E.ashx) | The installation procedures for the Email Experience Manager module | -| [Documentation](https://doc.sitecore.net:443/en/Products/Email_Experience_Manager) | Documentation for the EXM module. | - -## Links - -| Resource | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------- | -| [Norwegian (nb-NO)](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2030/Email%20Experience%20Manager%2030%20Initial%20release/Secure/EXM30nbNO150702.zip) | Norwegian language client translation file. | -| [Swedish (sv-SE)](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2030/Email%20Experience%20Manager%2030%20Initial%20release/Secure/EXM30svSE150618.zip) | Swedish language client translation file. | diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Update1/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Update1/index.md deleted file mode 100644 index e0f650a79..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Update1/index.md +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: 'Email Experience Manager 3.0 Update-1' -description: '' -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Update1 ---- - - - - - -Looking for **a different update**? See [all available EXM 3.0 updates](/downloads/Email_Experience_Manager/Email_Experience_Manager_30). - - - - - - **Consider Upgrading to EXM 3.4 today** -• Sitecore no longer recommends deployment of Email Experience Manager (EXM) version 3.3 or any earlier versions of EXM in a production environment. With version 3.4, Sitecore has moved towards an architecture that separates major components such as message delivery, reporting, and suppression services into dedicated service tiers. These changes provide performance improvements to suppression list lookup and data reporting. Please consider upgrading to the latest version. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - -**Dyn Deprecation** -• After November 1, 2017, the Sitecore Email Delivery (Dyn) service will no longer be available (**[KB article](https://kb.sitecore.net/articles/669456)**). For customers unable to migrate to Sitecore 8.2, you will be obliged to begin using a Custom SMTP (MTA) solution on your existing version. The use of Dyn to assist in the email delivery process is no longer a necessity in the use of EXM 3.4 and above. -• Sitecore has developed a new **[Sitecore Email Cloud](https://doc.sitecore.net/email_experience_manager/configuring_the_delivery_process/message_transfer_agent/the_sitecore_email_cloud_compared_to_the_custom_smtp)** service, replacing the Email Delivery service. Customers will benefit from greater scalability, faster email delivery, global coverage and intensive email support. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - - - -## Downloads - -| Resource | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | -| [Email Experience Manager](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/8%200/Sitecore%20Experience%20Platform%208%20update1/Secure/Email%20Experience%20Manager%203.0%20rev.%20150126.zip) | Download this package to install Sitecore Email Experience Manager 3.0 rev. 150126 | - -## Upgrades - -| Resource | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------- | -| [EXM Update Package](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2030/Email%20Experience%20Manager%2030%20Update1/Secure/Email%20Experience%20Manager%2030%20rev%20150126%20%20Update%20Package.zip) | Download the files that you need for the upgrade process
| - -## Release Information - -| Resource | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| [Release notes](/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Initial_release/Version_Resources/Release_Notes#150126) | Read the list of features, improvements, and fixes that have been implemented in this release.
| -| [Known issues](https://kb.sitecore.net/articles/149565) | Choose this link to access the Sitecore Knowledge Base. | -| [EXM Installation Guide](/~/media/FAD5DEB3A43D4D968AF57EA206AF097E.ashx) | The installation procedures for the Email Experience Manager module | -| [Documentation](https://doc.sitecore.net:443/en/Products/Email_Experience_Manager) | Documentation for the EXM module. | - -## Links - -| Resource | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------- | -| [Norwegian (nb-NO)](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2030/Email%20Experience%20Manager%2030%20Initial%20release/Secure/EXM30nbNO150702.zip) | Norwegian language client translation file. | -| [Swedish (sv-SE)](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2030/Email%20Experience%20Manager%2030%20Update1/Secure/EXM30svSE150618.zip) | Swedish language client translation file. | diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Update2/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Update2/index.md deleted file mode 100644 index b66769456..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Update2/index.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: 'Email Experience Manager 3.0 Update-2' -description: '' -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Update2 ---- - - - - - -Looking for **a different update**? See [all available EXM 3.0 updates](/downloads/Email_Experience_Manager/Email_Experience_Manager_30). - - - - - - **Consider Upgrading to EXM 3.4 today** -• Sitecore no longer recommends deployment of Email Experience Manager (EXM) version 3.3 or any earlier versions of EXM in a production environment. With version 3.4, Sitecore has moved towards an architecture that separates major components such as message delivery, reporting, and suppression services into dedicated service tiers. These changes provide performance improvements to suppression list lookup and data reporting. Please consider upgrading to the latest version. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - -**Dyn Deprecation** -• After November 1, 2017, the Sitecore Email Delivery (Dyn) service will no longer be available (**[KB article](https://kb.sitecore.net/articles/669456)**). For customers unable to migrate to Sitecore 8.2, you will be obliged to begin using a Custom SMTP (MTA) solution on your existing version. The use of Dyn to assist in the email delivery process is no longer a necessity in the use of EXM 3.4 and above. -• Sitecore has developed a new **[Sitecore Email Cloud](https://doc.sitecore.net/email_experience_manager/configuring_the_delivery_process/message_transfer_agent/the_sitecore_email_cloud_compared_to_the_custom_smtp)** service, replacing the Email Delivery service. Customers will benefit from greater scalability, faster email delivery, global coverage and intensive email support. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - - - -## Downloads - -| Resource | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | -| [Email Experience Manager](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/8%200/Sitecore%20Experience%20Platform%208%20update2/Secure/Email%20Experience%20Manager%203.0%20rev.150223%20NOT%20SC%20PACKAGE.zip) | Download this package to install Sitecore Email Experience Manager 3.0 rev. 150223 | - -## Upgrades - -| Resource | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------- | -| [EXM Update Package](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2030/Email%20Experience%20Manager%2030%20Update2/Secure/Email%20Experience%20Manager%2030%20rev150223%20Update%20Package.zip) | Download the files that you need for the upgrade process
| -| [EXM Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/8%200/Sitecore%20Experience%20Platform%208%20update2/Secure/EXM%203%200%20Update%202%20Update%20Instructions.pdf) | Step by step guide to the EXM 3.0 Update-2 upgrade process | - -## Release Information - -| Resource | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| [Release notes](/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Initial_release/Version_Resources/Release_Notes#150223) | Read the list of features, improvements, and fixes that have been implemented in this release.
| -| [Known issues](https://kb.sitecore.net/articles/149565) | Choose this link to access the Sitecore Knowledge Base. | -| [EXM Installation Guide](/~/media/FAD5DEB3A43D4D968AF57EA206AF097E.ashx) | The installation procedures for the Email Experience Manager module | -| [Documentation](https://doc.sitecore.net:443/en/Products/Email_Experience_Manager) | Documentation for the EXM module. | - -## Links - -| Resource | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------- | -| [Norwegian (nb-NO)](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2030/Email%20Experience%20Manager%2030%20Initial%20release/Secure/EXM30nbNO150702.zip) | Norwegian language client translation file. | -| [Swedish (sv-SE)](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2030/Email%20Experience%20Manager%2030%20Update2/Secure/EXM30svSE150618.zip) | Swedish language client translation file. | diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Update3/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Update3/index.md deleted file mode 100644 index f870ce1bc..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Update3/index.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: 'Email Experience Manager 3.0 Update-3' -description: '' -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Update3.aspx ---- - - - - - -Looking for **a different update**? See [all available EXM 3.0 updates](/downloads/Email_Experience_Manager/Email_Experience_Manager_30). - - - - - - **Consider Upgrading to EXM 3.4 today** -• Sitecore no longer recommends deployment of Email Experience Manager (EXM) version 3.3 or any earlier versions of EXM in a production environment. With version 3.4, Sitecore has moved towards an architecture that separates major components such as message delivery, reporting, and suppression services into dedicated service tiers. These changes provide performance improvements to suppression list lookup and data reporting. Please consider upgrading to the latest version. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - -**Dyn Deprecation** -• After November 1, 2017, the Sitecore Email Delivery (Dyn) service will no longer be available (**[KB article](https://kb.sitecore.net/articles/669456)**). For customers unable to migrate to Sitecore 8.2, you will be obliged to begin using a Custom SMTP (MTA) solution on your existing version. The use of Dyn to assist in the email delivery process is no longer a necessity in the use of EXM 3.4 and above. -• Sitecore has developed a new **[Sitecore Email Cloud](https://doc.sitecore.net/email_experience_manager/configuring_the_delivery_process/message_transfer_agent/the_sitecore_email_cloud_compared_to_the_custom_smtp)** service, replacing the Email Delivery service. Customers will benefit from greater scalability, faster email delivery, global coverage and intensive email support. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - - - -## Downloads - -| Resource | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | -| [Email Experience Manager](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/8%200/Sitecore%20Experience%20Platform%2080%20Update3/Secure/Email%20Experience%20Manager%2030%20rev150429%20NOT%20SC%20PACKAGE.zip) | Download this package to install Sitecore Email Experience Manager 3.0 rev. 150429. | - -## Upgrades - -| Resource | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------- | -| [EXM Update Package](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2030/Email%20Experience%20Manager%2030%20Update3/Secure/Email%20Experience%20Manager%2030%20rev%20150429%20Update%20Package.zip) | Download the files that you need for the upgrade process
| -| [EXM Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/8%200/Sitecore%20Experience%20Platform%2080%20Update3/Secure/EXM%203%200%20Update%203%20Update%20Instructions.pdf) | Step by step guide to the EXM 3.0 Update-3 upgrade process | - -## Release Information - -| Resource | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| [Release notes](/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Initial_release/Version_Resources/Release_Notes#150429) | Read the list of features, improvements, and fixes that have been implemented in this release.
| -| [Known issues](https://kb.sitecore.net/articles/149565) | Choose this link to access the Sitecore Knowledge Base. | -| [EXM Installation Guide](/~/media/FAD5DEB3A43D4D968AF57EA206AF097E.ashx) | The installation procedures for the Email Experience Manager module | -| [Documentation](https://doc.sitecore.net:443/en/Products/Email_Experience_Manager) | Documentation for the EXM module. | - -## Links - -| Resource | Description | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------- | -| [Norwegian (nb-NO)](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2030/Email%20Experience%20Manager%2030%20Initial%20release/Secure/EXM30nbNO150702.zip) | Norwegian language client translation file. | -| [Swedish (sv-SE)](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2030/Email%20Experience%20Manager%2030%20Update3/Secure/EXM30svSE150618.zip) | Swedish language client translation file. | diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_30/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_30/index.md deleted file mode 100644 index d9d84a613..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_30/index.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: "3.0" -description: "Use EXM to create highly customizable messages that are both personal and relevant to your customers." -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_30.aspx ---- - -### [Email Experience Manager 3.0 Update-3](/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Update3) - -Download Email Experience Manager 3.0 rev. 150429 (Update-3) -This version of the Email Experience Manager runs on Sitecore Experience Platform rev. 150427 (8.0 Update-3) - -### [Email Experience Manager 3.0 Update-2](/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Update2) - -Download Email Experience Manager 3.0 rev. 150223 (Update-2). -This version of Email Experience Manager is compatible with Sitecore Experience Platform rev. 150223 (8.0 Update-2) - -### [Email Experience Manager 3.0 Update-1](/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Update1) - -Download Email Experience Manager rev. 150126 (Update-1). -This version of the Email Experience Manager is compatible with Sitecore Experience Platform 8.0 rev. 150121 (8.0 Update-1) - -### [Email Experience Manager 3.0 Initial release](/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Initial_release) - -Download Email Experience Manager 3.0 rev. 141217 (Initial Release). -This version of the Email Experience Manager is compatible with Sitecore Experience Platform rev. 141212 (8.0 Initial Release). \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Initial_Release/Version_Resources/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Initial_Release/Version_Resources/Release_Notes.md deleted file mode 100644 index cf981cdbb..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Initial_Release/Version_Resources/Release_Notes.md +++ /dev/null @@ -1,103 +0,0 @@ ---- -title: "Release notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Initial_Release/Version_Resources/Release_Notes ---- - -## July 2015 – Email Experience Manager 3.1 (rev.150703) - -This a feature release. Sitecore recommends that you upgrade to this release even if it does not provide features that meet the specific needs of your organization. This release contains both significant new feature functionality and bug fixes for the Email Experience Manager product, and we encourage you to evaluate it. - -## Compatibility - -This version of the EXM module only runs on Sitecore 8.0 rev. 150427 (Update-3). - -## Highlights - -- Includes all the fixes from EXM 3.0 Update-3 -- Significantly improves UX and UI stability and functionality -- Significantly improves delivery stability and functionality -- Improved integration with the Sitecore List Manager* -- The dispatch queue now uses SQL database instead of MongoDB -- Provides compatibility with Sitecore xDB Cloud Edition -- Improves the generation of links and provides options for test environments - -*See the list of known issues. - -## Documentation - -For all Email Experience Manager 3.1 documentation, please visit the new [Sitecore Documentation Site](https://doc.sitecore.net/). - -## System requirements - -Please see [Sitecore documentation for recommended platform hardware](/downloads/Sitecore_Experience_Platform/8_0/Sitecore_Experience_Platform_80_Update3). - -Sitecore recommends that you place the SQL dispatch database on its own SQL instance (8core CPU, 8GB RAM) for high volume environments (for example, more than 1,000,000 per week). - -We recommend that you install one dedicated email dispatch server for your environment, if you meet at least one of the following scenarios: - -- You dispatch more than 100,000 emails per week. -- Your emails are sometimes lightly personalized with xDB or third-party data. -- Your content management server regularly has five or more concurrent users. -- You do not have a dedicated xDB processing instance. -- You have a low-powered SQL Server, or all your SQL databases are on one server. -- You have MongoDB and SQL on the same physical or virtual hardware. -- You are not using fast/SSD-based disks on any of your servers. - -We also recommend that you install more than one dedicated email dispatch server, if you meet at least one of the following scenarios: - -- You dispatch more than 1,000,000 emails per week. -- Your emails are regularly heavily personalized with xDB or third-party data. -- Your content management server regularly has 10+ concurrent users. -- You do not have a dedicated xDB processing instance. -- You are performing regular analytics reporting lookups. -- You have moderate-to-large customizations on xDB Analytics & Reporting. - -There is no fixed guideline for scaling EXM. You need to decide how fast you would like to send emails to your customers and balance this with hardware availability, your budget, and the impact on other Sitecore features, such as content editors, publishing, analytics processing, and reporting. - -If you require assistance in sizing your environment, please contact your local technical consulting representative. - -## New features & improvements - -- The Dispatch pipeline has been redesigned for more stable delivery, and a custom pipeline has been created (the DispatchNewsletter pipeline) for dedicated dispatch servers. -- Specific configuration packages for each server role and dedicated servers have been created. -- A SQL Server database is now used for queuing instead of MongoDB. -- Link generation has been moved to the new modifyHyperlink and modifyImageLink pipelines, allowing the links to be modified, for example, to append third-party tracking. -- The encryption of SMTP credentials is now supported. -- The DK translation of the UI has been improved. -- The default Manager root has moved up a level in the content tree. -- The sitecore_ecm_speak_request.ashx http handler has been removed and replaced with the Sitecore Services Client API. -- A new Experience Editor ribbon has been added, which only includes the buttons that are directly related to editing an email. -- The Attachments panel and the Preview for recipients panel have been moved to each separate dialog. -- Two new fields have been added to the Message Info panel: “Attachments” and “Previewed for recipient.” -- The Preview Base URL setting has been added to the Default Settings dialog, allowing the URL for test messages to be configured. -- The Reporting page has been moved to a separate page. -- The Default setting button has been moved to the upper right corner of the Start page. -- The Message Tab layout has been redesigned, including a new UI for AB Testing and more space for Plain text variant field. -- The names of the message lists on the EXM Start page have been restructured. -- The Start page now shows a list of draft messages instead of recently created lists. - -## Breaking changes - -- New configuration packages have been created for the server roles and the dedicated servers. -- MogoDB is no longer used to queue messages in EXM. A database, and alternatively a database creation script, is included in the installation package, as well as instructions on how to migrate old campaign data to the new database. -- All processors in the Sitecore.EmailCampaign.Server.Requests classes have been replaced with the web API-based entity service controllers in the Sitecore.EmailCampaign.Server.Controllers classes. -- The message reporting page has been moved to a separate page on the Launchpad. -- DispatchType enum members have been renamed, and the AbTestWinner member has been removed from code base. - -## Deprecated and removed functionality - -- EXM no longer supports email actions for Sitecore users. -- Recipient lists can no longer be specified for triggered messages. -- Emulation mode is no longer possible for A/B test messages. -- The GetQueuedFirstLevel() and GetQueuedSecondLevel() methods have been removed from the IEmailMessage interface. -- Sitecore.EmailCampaign.Speak.Server has been removed from the EXM solution. - -## Resolved issues - -- During installation of EXM, the error log was filled with exceptions, but installation succeeded. This has been fixed because EXM now uses a SQL Server database. (27749). -- After updating from EXM 3.0 to EXM 3.0 update-1 messages that were in select a winner state from A/B testing will not able to send the winning variant as message becomes in paused state. This has been fixed. (27759). -- The One time message dialog did not show all the standard templates for ja-jp EXM Advanced user. This has been fixed. (38502) -- The Default language no longer has to be English. (434212) -- When editing the mail body in the Experience Editor and using the ‘Edit the related item’ feature, the “Uncaught TypeError” JS error appeared and the Content Editor window would not close. This has been fixed. (58663, 407807) -- When editing the mail in the Experience Editor a data source item could not be set. This has been fixed (51670, 435506) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Initial_Release/index.md deleted file mode 100644 index 7347f126f..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Initial_Release/index.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: "Email Experience Manager 3.1 Initial Release" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Initial_Release ---- - - - - This version of the Email Experience Manager is compatible with [**Sitecore 8.0 rev. 150427 (Update-3)**](/downloads/Sitecore_Experience_Platform/8_0/Sitecore_Experience_Platform_80_Update3). - - - - - **Consider Upgrading to EXM 3.4 today** -• Sitecore no longer recommends deployment of Email Experience Manager (EXM) version 3.3 or any earlier versions of EXM in a production environment. With version 3.4, Sitecore has moved towards an architecture that separates major components such as message delivery, reporting, and suppression services into dedicated service tiers. These changes provide performance improvements to suppression list lookup and data reporting. Please consider upgrading to the latest version. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - -**Dyn Deprecation** -• After November 1, 2017, the Sitecore Email Delivery (Dyn) service will no longer be available (**[KB article](https://kb.sitecore.net/articles/669456)**). For customers unable to migrate to Sitecore 8.2, you will be obliged to begin using a Custom SMTP (MTA) solution on your existing version. The use of Dyn to assist in the email delivery process is no longer a necessity in the use of EXM 3.4 and above. -• Sitecore has developed a new **[Sitecore Email Cloud](https://doc.sitecore.net/email_experience_manager/configuring_the_delivery_process/message_transfer_agent/the_sitecore_email_cloud_compared_to_the_custom_smtp)** service, replacing the Email Delivery service. Customers will benefit from greater scalability, faster email delivery, global coverage and intensive email support. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Email Experience Manager](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2031/Email%20Experience%20Manager%2031%20Initial%20Release/Secure/EXM%2031%20rev%20150703.zip) | Download this package to install the Sitecore Email Experience Manager 3.1 rev. 150703. The EXM installation package includes five zip packages – the Email Experience Manager and four zip files that match specific server roles. For more information on how to install the EXM module, see the EXM Installation Guide. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [EXM Update Package](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2031/Email%20Experience%20Manager%2031%20Initial%20Release/Secure/Email%20Experience%20Manager%2031%20rev%20150703.update) | Download the files you need to upgrade from EXM 3.0 to EXM 3.1.
| - | [EXM Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2031/Email%20Experience%20Manager%2031%20Initial%20Release/Secure/EXM%203%201%20Update%20Instructions.pdf) | Step by step guide to upgrade EXM 3.0 to EXM 3.1. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Initial_Release/Version_Resources/Release_Notes) | Read the list of features, improvements, and fixes that have been implemented in this release.
| - | [Known issues](https://kb.sitecore.net/articles/149565) | Choose this link to access the Sitecore Knowledge Base. | - | [EXM Installation Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2031/Email%20Experience%20Manager%2031%20Initial%20Release/Secure/EXMInstallationGuide31.pdf) | The installation procedures for the Email Experience Manager module | - | [Documentation](https://doc.sitecore.net:443/en/Products/Email_Experience_Manager) | Documentation for the EXM module. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update1/Version_Resources/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update1/Version_Resources/Release_Notes.md deleted file mode 100644 index 0c78f534b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update1/Version_Resources/Release_Notes.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: "Release notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update1/Version_Resources/Release_Notes ---- - -## August 2015 – Email Experience Manager 3.1 rev.150811 (Update-1) - -This is a product update. Sitecore recommends that you upgrade to this release if it includes fixes that meet the specific needs of your organization. If this release does not include new functionality or specific fixes that your organization requires, you may benefit from waiting to upgrade until Sitecore releases an update that is relevant for your organization. This is especially true in production environments. - -For instructions on how to download and install this release, please visit the [Sitecore Developer Portal](/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update1). - -## Compatibility - -Email Experience Manager 3.1 Update 1 (rev. 150811) is compatible with Sitecore Experience Platform 8.0 rev.150621 (Update 4) and Sitecore Experience Platform 8.0 rev.150812 (Update 5). - -## Resolved issues - -- The previous version of EXM 3.1 did not support Sitecore XP 8.0 Update 4. This has been fixed. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update1/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update1/index.md deleted file mode 100644 index b1cbdf5a2..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update1/index.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: "Email Experience Manager 3.1 Update-1" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update1 ---- - - - - This version of the Email Experience Manager is compatible with [**Sitecore 8.0 rev. 150621 (Update-4)**](/downloads/Sitecore_Experience_Platform/8_0/Sitecore_Experience_Platform_80_Update4) and [**Sitecore 8.0 rev. 150812 (Update-5)**](/downloads/Sitecore_Experience_Platform/8_0/Sitecore_Experience_Platform_80_Update5). - - - - - **Consider Upgrading to EXM 3.4 today** -• Sitecore no longer recommends deployment of Email Experience Manager (EXM) version 3.3 or any earlier versions of EXM in a production environment. With version 3.4, Sitecore has moved towards an architecture that separates major components such as message delivery, reporting, and suppression services into dedicated service tiers. These changes provide performance improvements to suppression list lookup and data reporting. Please consider upgrading to the latest version. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - -**Dyn Deprecation** -• After November 1, 2017, the Sitecore Email Delivery (Dyn) service will no longer be available (**[KB article](https://kb.sitecore.net/articles/669456)**). For customers unable to migrate to Sitecore 8.2, you will be obliged to begin using a Custom SMTP (MTA) solution on your existing version. The use of Dyn to assist in the email delivery process is no longer a necessity in the use of EXM 3.4 and above. -• Sitecore has developed a new **[Sitecore Email Cloud](https://doc.sitecore.net/email_experience_manager/configuring_the_delivery_process/message_transfer_agent/the_sitecore_email_cloud_compared_to_the_custom_smtp)** service, replacing the Email Delivery service. Customers will benefit from greater scalability, faster email delivery, global coverage and intensive email support. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Email Experience Manager](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2031/Email%20Experience%20Manager%2031%20Update1/Secure/EXM%2031%20rev%20150811%20Update1.zip) | Download this package to install the Sitecore Email Experience Manager 3.1 rev. 150811. The EXM installation package includes five zip packages – the Email Experience Manager and four zip files that match specific server roles. For more information on how to install the EXM module, see the EXM Installation Guide. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [EXM Update Package](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2031/Email%20Experience%20Manager%2031%20Update1/Secure/Email%20Experience%20Manager%20311%20rev%20150811.update) | Download the files you need to upgrade from EXM 3.0 to EXM 3.1.
| - | [EXM Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2031/Email%20Experience%20Manager%2031%20Update1/Secure/EXM%203%201%20Update%201%20Upgrade%20Instructions.pdf) | Step by step guide to upgrade EXM 3.1 Initial to EXM 3.1 Update 1. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update1/Version_Resources/Release_Notes) | Read the list of features, improvements, and fixes that have been implemented in this release.
| - | [Known issues](https://kb.sitecore.net/articles/149565) | Choose this link to access the Sitecore Knowledge Base. | - | [EXM Installation Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2031/Email%20Experience%20Manager%2031%20Update1/Secure/EXMInstallationGuide31Update1.pdf) | The installation procedures for the Email Experience Manager module | - | [Documentation](https://doc.sitecore.net:443/en/Products/Email_Experience_Manager) | Documentation for the EXM module. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update_2/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update_2/Release_Notes.md deleted file mode 100644 index fc63ad705..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update_2/Release_Notes.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: "Sitecore Email Experience Manager 3.1 rev.151213  – Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update_2/Release_Notes ---- - -**December 2015 – released Sitecore Email Experience Manager 3.1 rev. 151213 (3.1 Update-2). -** - -This is a product update. Sitecore recommends that you upgrade to this release if it includes fixes that meet the specific needs of your organization. If this release does not include new functionality or specific fixes that your organization requires, you may benefit from waiting to upgrade until Sitecore releases an update that is relevant for your organization. This is especially true in production environments. - -For instructions on how to download and install this release, please visit the [Sitecore Developer Portal](/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update_2). - -## Documentation - -For all Sitecore Experience Platform 8.0 documentation, please visit the new [Sitecore Documentation Site](http://doc.sitecore.net). - -## Compatibility - -Email Experience Manager 3.1 rev. 151213 (3.1 Update-2) is compatible with Sitecore Experience Platform rev. 151127 (8.0 Update-6) - -## Resolved issues - -The error Data at the root level is invalid appeared in the log after installation. This has been fixed. (77097) - -Unauthenticated HTTP requests were being served by Sitecore. This occurred because the application did not always check authentication data when executing requests, causing a security vulnerability. This has been fixed. (79495) - -Messages triggered by engagement plans were unable to be sent and would return an error. This has been fixed. (80567) - -After EXM was installed, an unhandled exception was generated when starting the application in a scaled environment. This has been fixed. (77494) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update_2/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update_2/index.md deleted file mode 100644 index 8af66b12d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update_2/index.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: "Email Experience Manager 3.1 Update-2" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update_2.aspx ---- - - - - This version of the Email Experience Manager only runs on [Sitecore Experience Platform 8.0 rev. 151127 (8.0 Update-6)](/downloads/Sitecore_Experience_Platform/8_0/Sitecore_Experience_Platform_80_Update6) - - - - - **Consider Upgrading to EXM 3.4 today** -• Sitecore no longer recommends deployment of Email Experience Manager (EXM) version 3.3 or any earlier versions of EXM in a production environment. With version 3.4, Sitecore has moved towards an architecture that separates major components such as message delivery, reporting, and suppression services into dedicated service tiers. These changes provide performance improvements to suppression list lookup and data reporting. Please consider upgrading to the latest version. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - -**Dyn Deprecation** -• After November 1, 2017, the Sitecore Email Delivery (Dyn) service will no longer be available (**[KB article](https://kb.sitecore.net/articles/669456)**). For customers unable to migrate to Sitecore 8.2, you will be obliged to begin using a Custom SMTP (MTA) solution on your existing version. The use of Dyn to assist in the email delivery process is no longer a necessity in the use of EXM 3.4 and above. -• Sitecore has developed a new **[Sitecore Email Cloud](https://doc.sitecore.net/email_experience_manager/configuring_the_delivery_process/message_transfer_agent/the_sitecore_email_cloud_compared_to_the_custom_smtp)** service, replacing the Email Delivery service. Customers will benefit from greater scalability, faster email delivery, global coverage and intensive email support. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Email Experience Manager](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2031/Email%20Experience%20Manager%2031%20Update%202/Secure/Email%20Experience%20Manager%203.1.2%20rev.%20151213%20NOT%20SC%20PACKAGE.zip) | Download this package to install the Sitecore Email Experience Manager 3.1 rev. 151213. The EXM installation package includes five zip packages – the Email Experience Manager and four zip files that match specific server roles. For more information on how to install the EXM module, see the EXM Installation Guide. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [EXM Update Package](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2031/Email%20Experience%20Manager%2031%20Update%202/Secure/Email%20Experience%20Manager%203.1.2%20rev.%20151213%20Update%20Package.zip) | Download the files you need to upgrade from EXM 3.1 Update 1 to EXM 3.1 Update 2. | - | [EXM Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2031/Email%20Experience%20Manager%2031%20Update%202/Secure/EXM%203%201%20Update%202%20Upgrade%20Instructions.pdf) | Step by step guide to upgrade EXM 3.1 Update 1 to EXM 3.1 Update 2. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update_2/Release_Notes) | Read the list of features, improvements, and fixes that have been implemented in this release.
| - | [Known issues](https://kb.sitecore.net/articles/149565) | Choose this link to access the Sitecore Knowledge Base. | - | [EXM Installation Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2031/Email%20Experience%20Manager%2031%20Update%202/Secure/EXM_Installation_Guide_31_Update2.pdf) | The installation procedures for the Email Experience Manager module | - | [Documentation](https://doc.sitecore.net:443/en/Products/Email_Experience_Manager/31) | Documentation for the EXM module. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Initial_Release/Release_Notes.md deleted file mode 100644 index c152fd6e2..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,78 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Initial_Release/Release_Notes ---- - -**October 2015 – released Sitecore Email Experience Manager 3.2 rev. 151020 (Initial version)** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -For instructions on how to download and install this release, please visit the following download page. - -## Compatibility - -This version of the EXM module only runs on Sitecore 8.1 rev. 151003. - -You can upgrade to this version from EXM 3.1 rev. 150811 (Update-1) - -## Highlights - -EXM 3.2 is a mid-lifecycle product release focused on increasing stability and improving quality in the user experience and back end code. It also includes a major reworking of the internal data and task management techniques, with a view to being utilised by new features in the upcoming releases. - -The Email Experience Manager 3.2 includes: - -- All fixes from EXM 3.1 rev. 150811 (Update-1) -- 150+ legacy bugs and minor enhancements -- UX: New designs for key sections message creation workflow -- UX: Updates to list pages including better search -- Significant code reworking in key areas of UX/UI -- A/B testing removed from triggered messages -- Better mobile support for embedded images -- Separate logging for EXM now added - -Scale recommendations have been increased from 2 million emails per month to 10 million emails per month. For sizing recommendations and information, please contact your regional office. - -## Resolved issues - -The Newsletter Root item of a message had remained Protected if the message was the duplicate of an already dispatched message. This has been fixed. (418236, 58670) - -Dispatch had paused if the recipient’s e-mail address had contained a hyphen. This has been fixed. (426910, 58680) - -Template creation had not worked correctly when the message is creating in the context of language other than English. This has been fixed. (430431, 62821) - -The List recipients count had not updated correctly when the contact had subscribed using EXM API. This has been fixed. (435920, 58703) - -External links could not be opened on a CM-CD environment. This has been fixed. (406646, 62782) - -Changes made to EXM Message Types names had resulted in excessive publish operations. This has been fixed. (69090) - -A bug had caused searching within a list page by Campaign name and Subject line to fail.. This has been fixed. (388967, 58606) - -Unauthorized users had access to the sitecore modules and Applications\Modules\ directories. This directory has now been protected. (363599, 58556) - -Incorrect search results were returned when using Solr. This has been fixed. (438472, 58714) - -Embedded images had not displayed on mobile devices. This has been fixed. (436646, 58705) - -EXM had not added baseURL to links in the background attribute. This has been fixed. (396831, 58644) - -Out of the box subscription forms had not worked correctly. This has been fixed. (443499, 66428) - -The MigrateTargetAudiences upgrade script could not assign any contacts to the contact list. This has been fixed. (418058, 58669) - -Anchor links had not parsed correctly. This has been fixed. (408387, 58666) - -The ResetTimeout setting had been calculated in minutes instead of seconds. This has been fixed. (432244, 58687) - -When scheduling an A/B test message, you were able to remove variant messages. This should not have been possible and had caused stability issues in the message. This has been fixed. (389049, 58622) - -In a scaled environment, the redirect link for the Unsubscribe page had been generated using the modules_website site context. This has been fixed. (408794, 62791) - -EXM had returned a 404 error with Danish language characters and dash replacement in the URL. This has been fixed. (425203, 58677) - -Excessive publishing jobs have been created during the message dispatch that may cause performance overhead. This has been fixed. (71005) - -## Known Issues - -The View contacts report shows incorrect user names and does not show email addresses. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Initial_Release/index.md deleted file mode 100644 index 44096b3db..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Initial_Release/index.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: "Email Experience Manager 3.2 Initial Release" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Initial_Release ---- - - - - This version of the Email Experience Manager only runs on **[Sitecore 8.1 rev. 151003 (8.1 Initial Release)](/downloads/Sitecore_Experience_Platform/Sitecore_81/Sitecore_Experience_Platform_81_Initial_Release)** - - - - - **Consider Upgrading to EXM 3.4 today** -• Sitecore no longer recommends deployment of Email Experience Manager (EXM) version 3.3 or any earlier versions of EXM in a production environment. With version 3.4, Sitecore has moved towards an architecture that separates major components such as message delivery, reporting, and suppression services into dedicated service tiers. These changes provide performance improvements to suppression list lookup and data reporting. Please consider upgrading to the latest version. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - -**Dyn Deprecation** -• After November 1, 2017, the Sitecore Email Delivery (Dyn) service will no longer be available (**[KB article](https://kb.sitecore.net/articles/669456)**). For customers unable to migrate to Sitecore 8.2, you will be obliged to begin using a Custom SMTP (MTA) solution on your existing version. The use of Dyn to assist in the email delivery process is no longer a necessity in the use of EXM 3.4 and above. -• Sitecore has developed a new **[Sitecore Email Cloud](https://doc.sitecore.net/email_experience_manager/configuring_the_delivery_process/message_transfer_agent/the_sitecore_email_cloud_compared_to_the_custom_smtp)** service, replacing the Email Delivery service. Customers will benefit from greater scalability, faster email delivery, global coverage and intensive email support. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Email Experience Manager](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2032/Email%20Experience%20Manager%2032%20Initial%20Release/Secure/Email%20Experience%20Manager%203.2.0%20rev.%20151020%20NOT%20SC%20PACKAGE.zip) | Download this package to install the Sitecore Email Experience Manager 3.2 rev. 151020. The EXM installation package includes five zip packages – the Email Experience Manager and four zip files that match specific server roles. For more information on how to install the EXM module, see the EXM Installation Guide. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [EXM Update Package](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2032/Email%20Experience%20Manager%2032%20Initial%20Release/Secure/Email%20Experience%20Manager%20320%20rev%20151020update.zip) | Download the files you need to upgrade from EXM 3.1 to EXM 3.2. | - | [EXM Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2032/Email%20Experience%20Manager%2032%20Initial%20Release/Secure/EXM%2032%20Upgrade%20Instructions.pdf) | Step by step guide to upgrade EXM 3.1 to EXM 3.2. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release notes and known issues](/downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Initial_Release/Release_Notes) | Read the list of features, improvements, and fixes that have been implemented in this release. | - | [EXM Installation Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2032/Email%20Experience%20Manager%2032%20Initial%20Release/Secure/EXMInstallationGuide32.pdf) | The installation procedures for the Email Experience Manager module | - | [Documentation](https://doc.sitecore.net/email_experience_manager) | Documentation for the EXM module. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Update1/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Update1/Release_Notes.md deleted file mode 100644 index 9aea82f5e..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Update1/Release_Notes.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Update1/Release_Notes ---- - -**February 2016 – released Sitecore Email Experience Manager 3.2.1 (rev. 160127)** - -This is an update to the Email Experience Manager. You must upgrade to this release of EXM if you are upgrading to Sitecore Experience Platform 8.1 rev. 151207 (8.1 Update-1). This release contains bug fixes. - -## Highlights - -The Sitecore Email Experience Manager 3.2.1 adds: - -- Compatibility for Sitecore 8.1 Update-1 -- Bug fixes (see resolved issues) - -## Documentation - -For all Sitecore Experience Platform 8.1 documentation, please visit the new [Sitecore Documentation Site](http://doc.sitecore.net). - -## System requirements - -- Sitecore Experience Platform 8.1 rev. 151207 (8.1 update-1) - -## Resolved issues - -- Improved overall security – a potential security vulnerability fix applied (79495) -- When using the default Newsletter template, changes in the message body could not be saved. This has been fixed. (80397) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Update1/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Update1/index.md deleted file mode 100644 index d4881d6ba..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Update1/index.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: "Email Experience Manager 3.2 Update-1" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Update1.aspx ---- - - - - This version of the Email Experience Manager only runs on **[Sitecore Experience Platform 8.1 rev. 151207 (8.1 Update-1)](/downloads/Sitecore_Experience_Platform/Sitecore_81/Sitecore_Experience_Platform_81_Update1)** and **[Sitecore Experience Platform 8.1 rev. 160302 (8.1 Update-2)](/downloads/Sitecore_Experience_Platform/Sitecore_81/Sitecore_Experience_Platform_81_Update2)** - - - - - **Consider Upgrading to EXM 3.4 today** -• Sitecore no longer recommends deployment of Email Experience Manager (EXM) version 3.3 or any earlier versions of EXM in a production environment. With version 3.4, Sitecore has moved towards an architecture that separates major components such as message delivery, reporting, and suppression services into dedicated service tiers. These changes provide performance improvements to suppression list lookup and data reporting. Please consider upgrading to the latest version. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - -**Dyn Deprecation** -• After November 1, 2017, the Sitecore Email Delivery (Dyn) service will no longer be available (**[KB article](https://kb.sitecore.net/articles/669456)**). For customers unable to migrate to Sitecore 8.2, you will be obliged to begin using a Custom SMTP (MTA) solution on your existing version. The use of Dyn to assist in the email delivery process is no longer a necessity in the use of EXM 3.4 and above. -• Sitecore has developed a new **[Sitecore Email Cloud](https://doc.sitecore.net/email_experience_manager/configuring_the_delivery_process/message_transfer_agent/the_sitecore_email_cloud_compared_to_the_custom_smtp)** service, replacing the Email Delivery service. Customers will benefit from greater scalability, faster email delivery, global coverage and intensive email support. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Email Experience Manager](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2032/Email%20Experience%20Manager%2032%20Update1/Secure/Email%20Experience%20Manager%203.2.1%20rev.%20160127%20NOT%20SC%20PACKAGE.zip) | Download this package to install the Sitecore Email Experience Manager 3.2 rev. 160127. The EXM installation package includes five zip packages – the Email Experience Manager and four zip files that match specific server roles. For more information on how to install the EXM module, see the EXM Installation Guide. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [EXM Update Package](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2032/Email%20Experience%20Manager%2032%20Update1/Secure/Email%20Experience%20Manager%203.2.1%20rev.%20160127%20update%20package.zip) | Download the files you need to upgrade from EXM 3.2 to EXM 3.2 (Update-1). | - | [EXM Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2032/Email%20Experience%20Manager%2032%20Update1/Secure/EXM%2032%20Upgrade%20Instructions_Update%201.pdf) | Step by step guide to upgrade EXM 3.2 Initial to EXM 3.2 Update 1. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release notes and known issues](/downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Update1/Release_Notes) | Read the list of features, improvements, and fixes that have been implemented in this release. | - | [EXM Installation Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2032/Email%20Experience%20Manager%2032%20Update1/Secure/EXM_Installation_Guide_32_Update%201.pdf) | The installation procedures for the Email Experience Manager module | - | [Documentation](https://doc.sitecore.net/email_experience_manager) | Documentation for the EXM module. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_33/Email_Experience_Manager_33_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_33/Email_Experience_Manager_33_Initial_Release/Release_Notes.md deleted file mode 100644 index 5e0a44545..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_33/Email_Experience_Manager_33_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,117 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_33/Email_Experience_Manager_33_Initial_Release/Release_Notes ---- - -**June 2016 – released Sitecore Email Experience Manager 3.3.0 (rev. 160527)** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -## Highlights - -- New EXM Dashboard - get the metrics for your email channel in a simple-to-use dashboard -- New reports give you an overview of your campaign statistics -- New Experience Profile Timeline integration allows you to see email events on the Experience Profile timeline -- New Cloud MTA integration - updated Dyn connector -- New Administrator menu helps you manage critical parts of your email delivery, including approved domains, senders, and the suppression list -- Event storage cache - Throttling of email events processing on the CD role -- Task runner - Queuing and distribution of tasks - -## Documentation - -- For all Sitecore Experience Platform 8.1 documentation, please visit the new [Sitecore Documentation Site](http://www.doc.sitecore.net) - -## System requirements - -- Sitecore Experience Platform 8.1 rev. 160519 (8.1 update-3) -- All CM servers and dedicated dispatch servers require the Visual C++ Redistributable for Visual Studio 2012 (http://www.microsoft.com/en-us/download/details.aspx?id=30679) to be installed - -## New features & improvements - -- Message type names have been renamed to more closely align to common marketing terms -- The Delivery tab in the message creation flow has been redesigned. -- The user experience for Email preview and Spam check services has been improved and increases EXM stability. -- EXM now supports TLS 1.1 and TLS 1.2. -- Improved handling of bounces increases EXM stability. -- New ContentTesting API integration has been added, improving A/B testing functionality in EXM. -- Suppression list verification has now been added to the dispatch process. -- You can manage the Suppression list within the EXM interface. -- You can now manage Approved domains within the EXM interface. -- You can now manage Approved senders within the EXM interface. -- A new email open handler has been added to support a new data foundation. -- The email click handler has been improved to support a new data foundation. -- New channel dashboard with a new UI has been added. -- New campaign report with a new UI has been added. -- Link encryption has been improved. -- A/B testing support has been added for uploaded and imported templates. -- There are now new custom EXM values facets in the xDB. -- Sent, open, clicked, bounce, spam complaint and subscribe email events are now stored in the xDB. -- A new way of handling of spam complaints has been added. -- The Experience Profile timeline now shows email events. - -## Breaking changes - -- The Scheduled message type has been removed. (80584) -- One-time message has been renamed to Regular email campaign. (80584) -- The Triggered message has been renamed to Automated email campaign. (80584) -- Aggregation of automation states has been removed. (79206) -- Encryption support has been added for legacy direct, open and unsubscribe links. (85242) - -## Deprecated and removed functionality - -- You can no longer run an A/B test on a triggered message. (62172) -- Language-specific statistics are no longer available in the reports. - -## Resolved issues - -The following issues have been resolved: - -- Error when opening EXM if xDB is disabled. (98280) -- Wrong value ($title$) of the subject field in the EXM UI for the "existing page" email template. (108481) -- The user-based recipient statistics can't be collected correctly in the Message report. (79007) -- EXM doesn't need to have required not-empty FullName property. (108489 - duplicate of 79007) -- EXM cannot authenticate against MS Exchange server with NTLM authentication. (106556) -- Dispatch process marks as Sent if you get MongoDB connection timeout during dispatch. (75030) -- EXM marks that the sent is complete when no emails are sent. (105086) -- Make message creation dialog responsive. (104425) -- EXM doesn't respect the "MediaLinkPrefix" setting. (103493) -- MVC Subscription Form increase count for unchecked lists rather than checked. (103749) -- Inconsisent resubscribing in EXM API. (99808) -- AutomationStates handler does not support IIS authentication. (99501) -- Message Type field has Droplist type. (83384) -- Newsletter message incorrectly shares images between language versions. (83764) -- Cannot create new message when addAspxExtension="true" in linkProvider. (80142) -- In email message links are not encoded for image src. (81836) -- Ctrl+C/CTRL+V doesn't work for inputs. (77188, 77600) -- Cannot create new message when lowercaseUrls="true" in linkProvider. (74206) -- Test email URL not encoded causing validation to fail. (74865) -- Internal RTE links are not expanded when the Simple Html Message body is generated. (75370) -- Unnecessary parameters for GenerateImageLink processor. (75387) -- CustomPersonTokens values are lost for Online version of triggered message. (75635) -- Tokens are encoded in email subject. (75647) -- Exception occurs when sending large e-mail via ECM and EmailDelivery. (58667) -- Incorrect search results when using Solr. (58714) -- Plain Text Message replaces & with &. (58718) -- UnsubscribeAll link does not work in the Subscription Notification email. (62757) -- ECM does not add baseURL to links in background attribute. (58644) -- Anchor links not parsed correctly. (58666) -- 'Newsletter Root' item of a message remains 'Protected' if the message is the duplicate of already dispatched message. (58670) -- Returns 404 with Danish language and dash replacement in URL. (58677) -- Adds a recipient to a list without using List Management API. (58703) -- Embedded images not displayed on mobile devices. (58705) -- Does not work with custom medialink prefix. (62748) -- Incorrect logic of handling bounces. (62753) -- Add UserAgent header to the message body request. (62778) -- Cannot open external links on CM-CD environment. (62782) -- In scaled environment, the redirect link for Unsubscribe page is generated using "modules_website" site context. (62791) -- Triggered messages don't support external links. (62794) -- Does not correct link in RTE on message copy. (62803) -- Dedicated server is not started sometimes due to items desynchronization. (62808) -- Missed message templates when the message is creating in the context of language other than English. (62821) -- Missing Translations for the first create message dialog page. (62827) -- HTML tags are not stripped off in Plain Text Message. (62833) -- Out of the box subscription form doesn't work. (66428) -- Reduce the number of published items during the dispatch. (71005) -- Exception on the CD with some links. (74832) -- ​The ModifySrcLinks method breaks the 'src' attribute in the HTML markup. (75916) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_33/Email_Experience_Manager_33_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_33/Email_Experience_Manager_33_Initial_Release/index.md deleted file mode 100644 index eba317ca4..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_33/Email_Experience_Manager_33_Initial_Release/index.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: 'Email Experience Manager 3.3 Initial Release' -description: '' -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_33/Email_Experience_Manager_33_Initial_Release.aspx ---- - - - - This version of the Email Experience Manager only runs on **[Sitecore Experience Platform 8.1 rev. 160519 (8.1 Update-3)](/downloads/Sitecore_Experience_Platform/Sitecore_81/Sitecore_Experience_Platform_81_Update3)** - - - - - **Consider Upgrading to EXM 3.4 today** -• Sitecore no longer recommends deployment of Email Experience Manager (EXM) version 3.3 or any earlier versions of EXM in a production environment. With version 3.4, Sitecore has moved towards an architecture that separates major components such as message delivery, reporting, and suppression services into dedicated service tiers. These changes provide performance improvements to suppression list lookup and data reporting. Please consider upgrading to the latest version. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - -**Dyn Deprecation** -• After November 1, 2017, the Sitecore Email Delivery (Dyn) service will no longer be available (**[KB article](https://kb.sitecore.net/articles/669456)**). For customers unable to migrate to Sitecore 8.2, you will be obliged to begin using a Custom SMTP (MTA) solution on your existing version. The use of Dyn to assist in the email delivery process is no longer a necessity in the use of EXM 3.4 and above. -• Sitecore has developed a new **[Sitecore Email Cloud](https://doc.sitecore.net/email_experience_manager/configuring_the_delivery_process/message_transfer_agent/the_sitecore_email_cloud_compared_to_the_custom_smtp)** service, replacing the Email Delivery service. Customers will benefit from greater scalability, faster email delivery, global coverage and intensive email support. Should your organization require the use of EXM 3.0-3.3 software, please connect with Sitecore at the earliest convenience by contacting your local Sitecore representative or the appropriate email address found here: **[http://www.sitecore.net/company/contact-us](http://www.sitecore.net/company/contact-us)**. - -**Statistics loss after upgrade** -• Please be aware that if you upgrade from EXM 3.0-3.2 to EXM 3.3 or later, the Reporting architecture has been updated and older reporting data is no longer supported. -• If you need your historical reporting data, you should **[extract and migrate](https://doc.sitecore.net/email_experience_manager/reporting/extract_data_from_earlier_versions_of_exm_to_create_historical_reports)** it to a separate database where you can analyze it with your chosen Business Intelligence (BI) tool. - - - -## Downloads - -| Resource | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Email Experience Manager]() | Download this package to install the Sitecore Email Experience Manager 3.3 rev. 160527. The EXM installation package includes six zip packages – the Email Experience Manager, four zip files that match specific server roles, and a sample newsletter. For more information on how to install the EXM module, see the EXM Installation Guide. | - -## Upgrades - -| Resource | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------- | -| [EXM Update Package]() | Download the files you need to upgrade from EXM 3.2 Update 1 to EXM 3.3 Initial. | -| [EXM Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2033/Email%20Experience%20Manager%2033%20Initial%20Release/Secure/EXM-33-Upgrade-Instructions.pdf) | Step by step guide to upgrade EXM 3.2 Update 1 to EXM 3.3 Initial. | - -## Release Information - -| Resource | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | -| [Release notes](/downloads/Email_Experience_Manager/Email_Experience_Manager_33/Email_Experience_Manager_33_Initial_Release/Release_Notes) | Read the list of features, improvements, and fixes that have been implemented in this release. | -| [Known Issues](https://kb.sitecore.net/articles/149565) | Choose this link to access the Sitecore Knowledge Base. | -| [EXM Installation Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2033/Email%20Experience%20Manager%2033%20Initial%20Release/Secure/EXM-Installation-Guide-33.pdf) | The installation procedures for the Email Experience Manager module. | -| [Documentation](https://doc.sitecore.net/email_experience_manager) | Documentation for the EXM module. | diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Initial_Release/Release_Notes.md deleted file mode 100644 index eb4ef5aa6..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,149 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Initial_Release/Release_Notes ---- - -**October 2016 – released Sitecore Email Experience Manager 3.4.0 (rev. 161028)** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -## Highlights - -- New Sitecore Email Cloud service, replacing the Email Delivery service -- Reporting now includes contact lists in campaign reports -- New charts on the dashboard and in campaign reports -- Email Preview and Spam Check service no longer requires a separate subscription -- Recipient and subscriber management process has been redesigned -- Additional options for controlling dispatches in scaled environments -- New licensing structure -- 60+ bug fixes - -## New feature/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | A link to the dashboard has been added to the breadcrumb, enabling quick navigation to the EXM dashboard. | | 110381 | - | Ctrl+S now works as a keyboard shortcut for saving an email campaign while you are in the message creation flow. | | 110821 | - | During campaign creation, you no longer need to specify an exclude list. Compared to earlier versions, exclude lists no longer affect how unsubscribes are processed. For more information please refer to the documentation. | | 43818 | - | The Sitecore Email Cloud has been added as an email delivery provider. For further information on this change please contact your Sitecore representative.​​ | | 100955 | - | ​​The Recipient tab has been redesigned. Changes include a search filter in the List selection dialog and exclude lists are now optional. | | 70068 | - | Unique Rate, Unique Open Rate, Unsubscribe Rate, and Bounced Rate metrics have been added to the reporting UI, showing data captured during the last three months.​ | | 99310 | - | When you create a message, the Message info panel now shows:The number of recipients in the included lists.The number of recipients in the excluded lists that are also in the included lists.The number of recipients in the global opt-out list that are also in the included lists.The total number of recipients for the message. | | 112668 | - | The Recipient activity block in message reports now shows a Time of the day chart.​ | | 111179 | - | A new unopened score card has been added to message reports.​ | | 117785 | - | The message reports now include the top links that have been clicked. | | 117783 | - | A recipient activity tab with new campaign metrics has been added to the Campaign report​. | | 111789 | - | A new retry operation helper has been added​ allowing services to be configured to retry in case of transient errors. | | 116067 | - | A new pipeline processor has been added to the SendEmail pipeline which allows you to throttle a dispatch​. | | 114757 | - | The Time of the day chart showing open and clicks rates has been added to reports. | | 119207 | - | You can now delete multiple emails on a suppression list at once | | 71671 | - | ​Unsubscribing recipients now removes them from all campaign include lists for a campaign instead of adding them to the exclude list. If a recipient belongs to any segmented list on the campaign, the recipient is added to the global opt-out list. | | 120265 | - | The Default settings no longer appear automatically when you first load EXM​. | | 118710 | - | ​​A validation of the sending domain has been added to the Default Settings dialog and the General tab during message creation. | | | - | The Values and Engagement tab has been added ​to the campaign report. | | | - | On the Domain page, you can now view the DKIM values for a specific domain. | | 119043 | - | A new Landing Page Performance tab​ has been added to the campaign reports page. | | 119398 | - | ​A new configuration option has been added that allows dispatching to be disabled on the primary CM server in a scaled environment setup where at least one dedicated dispatch server has been configured. | | 118712 | - | A new Sitecore agent that closes any unused SMTP connections has been added. | | 74311 | - | It is now possible to exclude message items from reports by setting "Exclude from reports" on the message item. By default, the standard service messages, for example, the unsubscribe notification, are all​ excluded. | | 118156 | - | All EXM assemblies are now versioned following SemVer. | | 121679 | - | The Engagement chart now displays productive visits – the number of contacts that generated value after visiting the website. | | 123511 | - | EXM-specific fields have been added to the analytics index to support EXM reporting. | | 124600 | - | The Chilkat SMTP component has been updated to version 9.5.058. | | 122402 | - | When using the Sitecore Email Cloud, you can now view subscription and consumption information on a new page in the Administration section.​ | | 120420 | - | A new page which shows subscription and consumption information for the Sitecore Email Cloud has been added to the Administration menu​​. | | 120420 | - | ​Additional data, such as email and name, is now stored on interactions and also indexed to provider a richer and better reporting experience. | | 127389 | - -## Breaking changes - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | The EmailDeliveryClient and the SitecoreUserRecipientRepository have been removed. | | 115810 | - | The Dyn provider has been removed. For further information, please contact your Sitecore representative.​ | | 116956 | - | Interface contracts for the DispatchManager, SenderManager, and SuppressionManager EDS managers have been exposed. ​ | | 76691 | - | The Default list functionality has been removed. | | 120263 | - | The Target device option has been removed from the General tab​. | | | - -## Resolved issues - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | When Solr is used, the dropdowns for monthly and yearly intervals are empty ​when attempting to schedule a recurring delivery. | | 111221 | - | ​EXM throws a System.UnauthorizedAccessException when ​a user unsubscribes and read access is disabled for the recipient list or the list is removed.​ | | 107393 | - | A validation is needed when no variants are chosen on "Send quick test". | | 110482 | - | The Scroll bar has been removed from Create recipient list dialog. | | 110807 | - | The Search field has been reset in the Preview recipients dialog. | | 109643 | - | The Search field has been reset in the Select list dialog.​ | | 109792 | - | Newsletter template moved to "Sample Newsletter" package | | 110235 | - | On the recipients tab, when you schedule message delivery, the monthly and yearly drop-down lists areempty for the ECM Advanced User role. | | 83629 | - | On the recipients tab, when you schedule message delivery, the monthly and yearly drop-down lists are empty if Sitecore is configured to use Solr. | | 111221 | - | EXM cannot be launched from the desktop | | 116989 | - | Links in plain text messages do not generate correctly so message statistics cannot be tracked. | | 75305 | - | Message statistics for a specific campaign are not displayed for messages that are older than one month. | | 115475 | - | Clicking a link from an EXM message throws an exception if your IP address is specified in the excludedIPAddresses​​ configuration setting. | | 109090 | - | When sending a subscription confirmation mail, not all links are encrypted. | | 111996 | - | ​The CalculateRecipientCount method causes OutOfMemoryException​. | | 115674 | - | ​Buttons only work when you click them exactly in the center. | | 117716 | - | ​Images are not displayed in message body preview​s. | | 109788 | - | ​Clicking a link from some mailbox providers always creates the Email Opened First Time and Email Opened events. | | 118866 | - | ​Images are not displayed in the message body preview.​ | | 109788 | - | The Media library doesn't display uploaded images​​. | | 109786 | - | An exception is thrown when you send a message from the Review tab.​ | | 112522 | - | The plus sign in the Subject or From Name field is replaced with space when you save​​. | | 112725 | - | ​The NullReferenceException is thrown in AbnTest.CreateTestVariableItem​ when the test variable item does not exist. | | 116199 | - | Incorrect values are displayed in the Browsed and the Value and visits charts. | | 118155 | - | EXM Draft/Sent messages are not listed when the content language is not English. | | 110920 | - | You cannot create a new message if you have set useDisplayName in the linkProvider. | | 110917 | - | EXM logs errors when using Custom SMTP even when everything is OK​​. | | 114469 | - | ​You cannot resubscribe to a list in EXM. | | 101015 | - | ​The spam check for messages with no subject causes an exception in the log. | | 119252 | - | The ​Select list dialog appears after the recipients list when you create a list if you have previously tried to create a segmented list​. | | 120010 | - | An unhandled exception message is shown when you upload more than one html file as a message template.​​ | | 119118 | - | The Scheduled field for automated messages displays the wrong value. | | 119121 | - | The recipients count for sent campaigns ​in the message info panel can change. | | 120857 | - | The unique click rate can be higher than the unique open rate​. | | 119097 | - | The Email campaign Message Text and Message Text Line fields do not work​. | | 120715 | - | The RedirectUrlPage pipeline truncates the url when it contains the = character as part of a query string​​ value. | | 107588 | - | The Send quick test button is disabled even after an automated message is deactivated.​​ | | 37723 | - | An exception is logged in the EXM log file if a plain text message is created and the body is left empty​. | | 121900 | - | If the From Address is empty, the default From Address is not applied to Automated messages. | | 121898 | - | The validation does not allow you to add an IP address as a domain name​​. | | 79445 | - | The dashboard link redirects users to the same page on all email delivery administration pages​. | | 112512 | - | The styling in confirmation dialogs for message delivery is inconsistent. | | 119119 | - | Setting the test size to 100% for A/B tests causes an error when trying to select a winner | | 97710 | - | ​Messages are not sent if they contain an incorrect external link. | | 58683 | - | Some phrases are not localizable​. | | 111154 | - | ​Unsubscribe events are counted as both an unsubscribe and a click. | | 123695 | - | The unique click rate can be higher than 100% for a campaign. | | 119779 | - | When you try to send a quick test for an automated message, an exception is logged in the EXM log file. | | 123492 | - | Sometimes when you disable ​Emulation mode, it is not disabled. | | 103735 | - | The Report for this email campaign link in the Select Winner notification links to the Message task page instead of the Campaign report page. | | 124265 | - | By default, an unsubscribe event no longer also generates a campaign event. | | 125288 | - | The Body editor becomes inaccessible if you add an item when you save changes to an item​​. | | 49419 | - | A user permission exception occurs when you upgrade EXM. | | 121632 | - | Values and translations are missing from the Dashboard charts in German. | | 120256 | - | The Counters.Enabled setting has no affect on the CpuAvgPerformance counter. | | 99467 | - | A notification about emulation mode is shown when you cancel campaign scheduling. | | 126503 | - | Invalid email addresses can cause problems during the dispatch process of a campaign. | | 124739 | - | ​External links containing special characters are broken. | | 125487 | - | Clicking pause/resume repeatedly creates multiple dispatch jobs. | | 127848 | - | Exceptions related to the dimension transformers occur when an item related to the message is deleted. | | 127960 | - | The click-to-open rate on the campaign report is calculated incorrectly. | | 119101 | - | A campaign dispatch can be duplicated ​because the Send message button is not disabled immediately after it has been clicked. | | 125562 | - | ​Field values are not copied for other language versions when you create an item from a branch. | | 125543 | - | The Subject field is not HTML encoded when viewed in the the ​message lists. | | 126495 | - | Not all charts on the Dashboard are refreshed when you switch between two manager roots. | | 126511 | - | ​The Browsed metric is incremented when you click different links in an email, instead of only when you browse to other pages from the landing page. | | 126518 | - | ​The axes of the Value and Visits chart are incorrect for email campaigns with several languages. | | 126507 | - | ​Users in the EXM User or EXM Advanced User role cannot create multi-language email campaigns based on an existing page. | | 126504 | - | ​Values in the Value and visits chart are rounded off incorrectly. | | 121540 | - | The ​"View reports for this message" link does not open the campaign report. | | 126502 | - -## Deprecated/removed - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | The InsertUserField button has been removed from the EXM Rich text editor profile​.​ | | 121212 | - | Reporting queries used by EXM versions prior to 3.3 have been removed. | | 127022 | - | ​The Clean Confirmation IDs task has been removed. | | 127020 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Initial_Release/index.md deleted file mode 100644 index abc04ae71..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Initial_Release/index.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: "Email Experience Manager 3.4 Initial Release" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Initial_Release.aspx ---- - -This page contains all the resources for **Email Experience Manager 3.4 rev. 161028 (Initial Release)**. - - - This version of the Email Experience Manager only runs on **Sitecore Experience Platform 8.2 rev. 160729 (8.2 Initial Release)** and **Sitecore Experience Platform 8.2 rev. 161115 (8.2 Update-1)** - - - - - **Subscription to the Sitecore Email Cloud** -• Please be aware when upgrading to EXM 3.4 a new subscription to the Sitecore Email Cloud is required. This especially applies to existing subscribers of the Sitecore App Center product; Email Delivery. Email Delivery subscriptions will no longer be active in EXM 3.4 and you are no longer able to self-serve your subscription through the Sitecore App Center UI. To ensure continuous service and for more information on how to migrate, how to subscribe and subscription pricing, please contact your local Sitecore representative immediately. - -**Statistics loss after upgrade** -• Please be aware that if you upgrade from EXM 3.0-3.2 to EXM 3.3 or later, the Reporting architecture has been updated and older reporting data is no longer supported. -• If you need your historical reporting data, you should **[extract and migrate](https://doc.sitecore.net/email_experience_manager/reporting/extract_data_from_earlier_versions_of_exm_to_create_historical_reports)** it to a separate database where you can analyze it with your chosen Business Intelligence (BI) tool. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Email Experience Manager](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2034/Email%20Experience%20Manager%2034%20Initial%20Release/Secure/Email%20Experience%20Manager%203.4.0%20rev.%20161028%20(not%20sc%20package).zip) | Download this package to install the Sitecore Email Experience Manager 3.4 rev. 161028. The EXM installation package includes seven zip packages – the Email Experience Manager, four zip files that match specific server roles, and two zip files for the sample newsletter. For more information on how to install the EXM module, see the EXM Installation Guide. | - | [Modern Sample Newsletter](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2034/Email%20Experience%20Manager%2034%20Initial%20Release/Secure/Email%20Experience%20Manager%20Modern%20Sample%20Newsletter%203.4.0%20rev.%20161109%20(not%20sc%20package).zip) | The Modern newsletter template is an MVC sample of a custom message template used for creation of Regular and Automated campaigns by Admin, ECM User and ECM Advanced User. Use Sample Newsletter for CM, and Sample Newsletter Files for CD and Dispatching. | - | [Updated Sitecore Email Cloud configuration](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2034/Email%20Experience%20Manager%2034%20Initial%20Release/Secure/Sitecore.EDS.Providers.SparkPost.config.disabled) | Download this updated configuration file if you are using the Sitecore Email Cloud provider. See details about the changes here: [https://kb.sitecore.net/articles/422955](https://kb.sitecore.net/articles/422955). The file must be deployed to the CM and all Dedicated Dispatch servers. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [EXM Update Package](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2034/Email%20Experience%20Manager%2034%20Initial%20Release/Secure/Email%20Experience%20Manager%203.4.0%20rev.%20161028%20(update%20package).zip) | Download the files you need to upgrade from EXM 3.3 Initial to EXM 3.4 Initial. | - | [EXM Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2034/Email%20Experience%20Manager%2034%20Initial%20Release/Secure/EXM-Upgrade-Instructions-34.pdf) | Step by step guide to upgrade EXM 3.3 Initial to EXM 3.4 Initial. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release notes and known issues](/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Initial_Release/Release_Notes) | Read the list of features, improvements, and fixes that have been implemented in this release. | - | [EXM Installation Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2034/Email%20Experience%20Manager%2034%20Initial%20Release/Secure/EXM-Installation-Guide-34.pdf) | The installation procedures for the Email Experience Manager module. | - | [Documentation](https://doc.sitecore.net/email_experience_manager) | Documentation for the EXM module. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update1/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update1/Release_Notes.md deleted file mode 100644 index dc75601ba..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update1/Release_Notes.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update1/Release_Notes ---- - -**January 2017 – released Sitecore Email Experience Manager 3.4.1 (rev. 170105)** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -## Highlights - -- You can now disable list locks in the List Manager and this means that EXM can process bounces, subscriptions, unsubscriptions, and spam complaints more effectively. -- The rendering of email messages in campaigns that don't use personalization has been optimized. - -## New feature/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | The performance of message generation has been greatly optimized for campaigns that do not contain rules-based personalization or code-behind layout personalization. | | 51926 | - | The default newsletter template has been replaced with a more modern template​. | | 126512 | - -## Resolved issues - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | You cannot collect more than one bounce/spam complaint at a time. | | 123990 | - | The Duplicate email campaign action redirects to the campaign report page.​​​ | | 135242 | - | More than one winner selection tasks can be created for a campaign when MTA is unavailable​​. | | 135622 | - | The Message preview tab in the Content Editor consumes a lot of memory and CPU when the campaign uses a recipient list with many recipients. | | 135069 | - | The email validation in the initial 3.4 release is too restrictive. | | 135375 | - | Quick test does not work when dispatching is disabled on the primary CM server. | | 138767 | - | Only one confirmation message is sent ​when subscribing to multiple lists. | | 137266 | - | Bounce and spam complaint handlers are broken​​. | | 136807 | - | The Reply To field is never used when sending a campaign. | | 135904 | - | The IsMessageBodyRequest method no longer exists. | | 141118 | - | ​If an invalid reply-to email address is specified, ECM.DefaultSettings.ReplyToNotValid​ is shown instead of a proper validation message. | | 139592 | - | Adding the sample Subscription form leads to a item validation error and js/css errors​. | | 137979 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update1/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update1/index.md deleted file mode 100644 index 5af2475b1..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update1/index.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: "Email Experience Manager 3.4 Update-1" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update1.aspx ---- - -This page contains all the resources for **Email Experience Manager 3.4 rev. 170105 (Update-1)**. - - - This version of the Email Experience Manager only runs on **Sitecore Experience Platform 8.2 rev. 161221 (8.2 Update-2)** - - - - - **Subscription to the Sitecore Email Cloud** -• Please be aware when upgrading to EXM 3.4 a new subscription to the Sitecore Email Cloud is required. This especially applies to existing subscribers of the Sitecore App Center product; Email Delivery. Email Delivery subscriptions will no longer be active in EXM 3.4 and you are no longer able to self-serve your subscription through the Sitecore App Center UI. To ensure continuous service and for more information on how to migrate, how to subscribe and subscription pricing, please contact your local Sitecore representative immediately. - -**Statistics loss after upgrade** -• Please be aware that if you upgrade from EXM 3.0-3.2 to EXM 3.3 or later, the Reporting architecture has been updated and older reporting data is no longer supported. -• If you need your historical reporting data, you should **[extract and migrate](https://doc.sitecore.net/email_experience_manager/reporting/extract_data_from_earlier_versions_of_exm_to_create_historical_reports)** it to a separate database where you can analyze it with your chosen Business Intelligence (BI) tool. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Email Experience Manager](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2034/Email%20Experience%20Manager%2034%20Update1/Secure/Email%20Experience%20Manager%203.4.1%20rev.%20170105%20(not%20sc%20package).zip) | Download this package to install the Sitecore Email Experience Manager. The EXM installation package includes seven zip packages – the Email Experience Manager, four zip files that match specific server roles, and two zip files for the sample newsletter. For more information on how to install the EXM module, see the EXM Installation Guide. | - | [Updated Sitecore Email Cloud configuration](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2034/Email%20Experience%20Manager%2034%20Update1/Secure/Sitecore.EDS.Providers.SparkPost.config.disabled) | Download this updated configuration file if you are using the Sitecore Email Cloud provider. See details about the changes here: [https://kb.sitecore.net/articles/422955](https://kb.sitecore.net/articles/422955). The file must be deployed to the CM and all Dedicated Dispatch servers. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [EXM Update Package](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2034/Email%20Experience%20Manager%2034%20Update1/Secure/Email%20Experience%20Manager%203.4.1%20rev.%20170105%20(update%20package).zip) | Download the files you need to upgrade from EXM 3.4 Initial to EXM 3.4 Update-1. | - | [EXM Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2034/Email%20Experience%20Manager%2034%20Update1/Secure/EXM-Upgrade-Instructions-34-Update1.pdf) | Step by step guide to upgrade EXM 3.4 Initial to EXM 3.4 Update-1. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release notes and known issues](/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update1/Release_Notes) | Read the list of features, improvements, and fixes that have been implemented in this release. | - | [EXM Installation Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2034/Email%20Experience%20Manager%2034%20Update1/Secure/EXM-Installation-Guide-34-Update1.pdf) | The installation procedures for the Email Experience Manager module. | - | [Documentation](https://doc.sitecore.net/email_experience_manager) | Documentation for the EXM module. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update2/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update2/Release_Notes.md deleted file mode 100644 index 92b670ed5..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update2/Release_Notes.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update2/Release_Notes ---- - -**July 2017 – released Sitecore Email Experience Manager 3.4 Update 2 (rev. 170713)** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Uploading attachments and importing HTML templates are broken after changes that were made to SPEAK in SXP 8.2 Update-3. | | 170654 | - | Images are counted as clicks when the `EmbedImages` setting is disabled or when the image is externally hosted. | | 151478 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update2/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update2/index.md deleted file mode 100644 index adcc6edfd..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update2/index.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: "Email Experience Manager 3.4 Update-2" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update2.aspx ---- - -This page contains all the resources for **Email Experience Manager 3.4 rev. 170713 (Update-2)**. - - - This version of the Email Experience Manager only runs on **Sitecore Experience Platform 8.2 rev. 170407 (8.2 Update-3)** and **Sitecore Experience Platform 8.2 rev. 170614 (8.2 Update-4)** - - - - - **Subscription to the Sitecore Email Cloud** -• Please be aware when upgrading to EXM 3.4 a new subscription to the Sitecore Email Cloud is required. This especially applies to existing subscribers of the Sitecore App Center product; Email Delivery. Email Delivery subscriptions will no longer be active in EXM 3.4 and you are no longer able to self-serve your subscription through the Sitecore App Center UI. To ensure continuous service and for more information on how to migrate, how to subscribe and subscription pricing, please contact your local Sitecore representative immediately. - -**Statistics loss after upgrade** -• Please be aware that if you upgrade from EXM 3.0-3.2 to EXM 3.3 or later, the Reporting architecture has been updated and older reporting data is no longer supported. -• If you need your historical reporting data, you should **[extract and migrate](https://doc.sitecore.net/email_experience_manager/reporting/extract_data_from_earlier_versions_of_exm_to_create_historical_reports)** it to a separate database where you can analyze it with your chosen Business Intelligence (BI) tool. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Email Experience Manager](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2034/Email%20Experience%20Manager%2034%20Update2/Secure/Email%20Experience%20Manager%203.4.2%20rev.%20170713%20NOT%20SC%20PACKAGE.zip) | Download this package to install the Sitecore Email Experience Manager. The EXM installation package includes seven zip packages – the Email Experience Manager, four zip files that match specific server roles, and two zip files for the sample newsletter. For more information on how to install the EXM module, see the EXM Installation Guide. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [EXM Update Package](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2034/Email%20Experience%20Manager%2034%20Update2/Secure/Email%20Experience%20Manager%203.4.2%20rev.%20170713%20(update%20package).zip) | Download the files you need to upgrade from EXM 3.4 Update-1 to EXM 3.4 Update-2. | - | [EXM Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2034/Email%20Experience%20Manager%2034%20Update2/Secure/EXM-Upgrade-Instructions-34-Update2.pdf) | Step by step guide to upgrade EXM 3.4 Update-1 to EXM 3.4 Update-2. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release notes and known issues](/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update2/Release_Notes) | Read the list of features, improvements, and fixes that have been implemented in this release. | - | [EXM Installation Guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/Email%20Experience%20Manager%2034/Email%20Experience%20Manager%2034%20Update2/Secure/EXM-Installation-Guide-34-Update2.pdf) | The installation procedures for the Email Experience Manager module. | - | [Documentation](https://doc.sitecore.net/email_experience_manager) | Documentation for the EXM module. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/in_Sitecore_91/Email_Experience_Manager_in_Sitecore_91/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/in_Sitecore_91/Email_Experience_Manager_in_Sitecore_91/index.md deleted file mode 100644 index 13c077b2d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/in_Sitecore_91/Email_Experience_Manager_in_Sitecore_91/index.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: "Email Experience Manager in Sitecore 9.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager/in_Sitecore_91/Email_Experience_Manager_in_Sitecore_91.aspx ---- - -This page contains all the resources for **EXM in Sitecore 9.1**. - - - - **EXM is now included with Sitecore** -• With Sitecore 9.0 Update-1 and onwards, EXM does not need to be installed as a separate module. -• You can only migrate EXM to Sitecore 9.0 Update-1 or later. It is not part of the upgrade procedure when upgrading from Sitecore 8.x. From Sitecore 9.0 Update-1 and later it is part of the upgrade procedure. -• Find the relevant resources for migrating EXM 3.5 to Sitecore 9.1 below. -**Release information** -• For GDPR support please see our [guide](https://kb.sitecore.net/articles/947205). - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Migrate Lists admin script](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/90/Email%20Experience%20Manager%20in%20Sitecore%2090%20Update1/Secure/MigrateLists.aspx) | An administration script that upgrades legacy contact lists to the new Sitecore 9 format and deploys them to xConnect. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Migration guide](https://scdp.blob.core.windows.net/downloads/Email%20Experience%20Manager/90/Email%20Experience%20Manager%20in%20Sitecore%2090%20Update1/Secure/Sitecore%20EXM%20Data%20Migration%20Guide.pdf) | This guide outlines how to migrate Content, Files, Data, and Analytics to a new Sitecore 9.0 Update-2 installation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/index.md b/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/index.md deleted file mode 100644 index 519288d68..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Email_Experience_Manager/index.md +++ /dev/null @@ -1,92 +0,0 @@ ---- -title: "Email Experience Manager" -description: "Use the Email Experience Manager (EXM) to create highly customizable messages that are both personal and relevant to your customers. As of Sitecore 9.0 Update-1, the Email Experience Manager is included as part of the Sitecore platform deployment." -origin: https://dev.sitecore.net/Downloads/Email_Experience_Manager.aspx ---- - - - -## Email Experience Manager 9.1 - - -[Email Experience Manager in Sitecore 9.1](/downloads/Email_Experience_Manager/in_Sitecore_91/Email_Experience_Manager_in_Sitecore_91)\ -This release is deployed as part of Sitecore XP 9.1. - - - - - -## Email Experience Manager 9.0 - - -[Email Experience Manager in Sitecore 9.0 Update-2](/downloads/Email_Experience_Manager/90/Email_Experience_Manager_in_Sitecore_90_Update2)\ -This release is deployed as part of Sitecore XP 9.0 Update-2. - -[Email Experience Manager in Sitecore 9.0 Update-1](/downloads/Email_Experience_Manager/90/Email_Experience_Manager_in_Sitecore_90_Update1)\ -This release is deployed as part of Sitecore XP 9.0 Update-1. - - - - - -## Email Experience Manager 3.5 - - -[Email Experience Manager 3.5 Update-2](/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update2)\ -[Email Experience Manager 3.5 Update-1](/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Update1)\ -[Email Experience Manager 3.5 Initial Release](/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Initial_Release) - - - - - -## Email Experience Manager 3.4 - - -[Email Experience Manager 3.4 Update-2](/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update2)\ -[Email Experience Manager 3.4 Update-1](/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Update1)\ -[Email Experience Manager 3.4 Initial Release](/downloads/Email_Experience_Manager/Email_Experience_Manager_34/Email_Experience_Manager_34_Initial_Release) - - - - - -## Email Experience Manager 3.3 - - -[Email Experience Manager 3.3 Initial Release](/downloads/Email_Experience_Manager/Email_Experience_Manager_33/Email_Experience_Manager_33_Initial_Release) - - - - - -## Email Experience Manager 3.2 - - -[Email Experience Manager 3.2 Update-1](/downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Update1)\ -[Email Experience Manager 3.2 Initial Release](/downloads/Email_Experience_Manager/Email_Experience_Manager_32/Email_Experience_Manager_32_Initial_Release) - - - - - -## Email Experience Manager 3.1 - - -[Email Experience Manager 3.1 Update-2](/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update_2)\ -[Email Experience Manager 3.1 Update-1](/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Update1)\ -[Email Experience Manager 3.1 Initial Release](/downloads/Email_Experience_Manager/Email_Experience_Manager_31/Email_Experience_Manager_31_Initial_Release) - - - - - -## Email Experience Manager 3.0 - - -[Email Experience Manager 3.0 Update-3](/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Update3)\ -[Email Experience Manager 3.0 Update-2](/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Update2)\ -[Email Experience Manager 3.0 Update-1](/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Update1)\ -[Email Experience Manager 3.0 Initial release](/downloads/Email_Experience_Manager/Email_Experience_Manager_30/Email_Experience_Manager_30_Initial_release) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Engagement_Automation_Live_Session_Agent/10/Sitecore_Engagement_Automation_Live_Session_Agent_10/index.md b/apps/devportal/data/markdown/pages/downloads/Engagement_Automation_Live_Session_Agent/10/Sitecore_Engagement_Automation_Live_Session_Agent_10/index.md deleted file mode 100644 index e5d1e60b5..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Engagement_Automation_Live_Session_Agent/10/Sitecore_Engagement_Automation_Live_Session_Agent_10/index.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: "Sitecore Engagement Automation Live Session Agent 1.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Engagement_Automation_Live_Session_Agent/10/Sitecore_Engagement_Automation_Live_Session_Agent_10.aspx ---- - -The Live Session Agent module enables you to install and configure an additional server role on a Sitecore content delivery instance. This additional server role enables you to trigger and process automation states by timeout, for contacts with live sessions on your website. - -This version of the Live Session Agent runs on [Sitecore Experience Platform 8.0](/downloads/Sitecore_Experience_Platform/8_0) and [Sitecore Experience Platform 8.1](/downloads/Sitecore_Experience_Platform/Sitecore_81) - -## Download options - - | Resource | Description | - | --- | --- | - | [Engagement Automation Live Session Agent](https://scdp.blob.core.windows.net/downloads/Engagement%20Automation%20Live%20Session%20Agent/10/Sitecore%20Engagement%20Automation%20Live%20Session%20Agent%2010/Secure/Sitecore%20Engagement%20Automation%20Live%20Session%20Agent%20100%20rev%20150331.zip) | Installation package for the Engagement Automation Live Session Agent module. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.net:443/en/Products/Sitecore_Experience_Platform/80/Setting_up_and_maintaining/xDB/Server_considerations/Live_session_agent) | Link to documentation portal with documentation for Engagement Automation Live Session Agent. | - | [Configuration settings](https://doc.sitecore.net:443/en/Products/Sitecore_Experience_Platform/80/Setting_up_and_maintaining/xDB/Configuring_servers/Live_session_agent_configuration_settings) | Link to documentation portal with documentation for Live session agent configuration settings.
| \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Engagement_Automation_Live_Session_Agent/20/Sitecore_Engagement_Automation_Live_Session_Agent_20/index.md b/apps/devportal/data/markdown/pages/downloads/Engagement_Automation_Live_Session_Agent/20/Sitecore_Engagement_Automation_Live_Session_Agent_20/index.md deleted file mode 100644 index 0c7a3df7a..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Engagement_Automation_Live_Session_Agent/20/Sitecore_Engagement_Automation_Live_Session_Agent_20/index.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: "Sitecore Engagement Automation Live Session Agent 2.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Engagement_Automation_Live_Session_Agent/20/Sitecore_Engagement_Automation_Live_Session_Agent_20.aspx ---- - -The Live Session Agent module enables you to install and configure an additional server role on a Sitecore content delivery instance. This additional server role enables you to trigger and process automation states by timeout, for contacts with live sessions on your website. - -This version of the Live Session Agent runs on [Sitecore Experience Platform 8.2](/downloads/Sitecore_Experience_Platform/82).[](/downloads/Sitecore_Experience_Platform/Sitecore_81) - -## Download options - - | Resource | Description | - | --- | --- | - | [Engagement Automation Live Session Agent](https://scdp.blob.core.windows.net/downloads/Engagement%20Automation%20Live%20Session%20Agent/20/Sitecore%20Engagement%20Automation%20Live%20Session%20Agent%2020/Secure/Sitecore%20Engagement%20Automation%20Live%20Session%20Agent%202.0.0%20rev.%20160923.zip) | Installation package for the Engagement Automation Live Session Agent module. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.net:443/en/Products/Sitecore_Experience_Platform/82/Setting_up_and_maintaining/xDB/Server_considerations/Live_session_agent) | Link to documentation portal with documentation for Engagement Automation Live Session Agent. | - | [Configuration settings](https://doc.sitecore.net:443/en/Products/Sitecore_Experience_Platform/82/Setting_up_and_maintaining/xDB/Configuring_servers/Live_session_agent_configuration_settings) | Link to documentation portal with documentation for Live session agent configuration settings.
| \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Engagement_Automation_Live_Session_Agent/index.md b/apps/devportal/data/markdown/pages/downloads/Engagement_Automation_Live_Session_Agent/index.md deleted file mode 100644 index d50cecebd..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Engagement_Automation_Live_Session_Agent/index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Engagement Automation Live Session Agent" -description: "Tooling to deploy a server role on SXP, which automatically processes timeouts of contacts with live sessions on the website." -origin: https://dev.sitecore.net/Downloads/Engagement_Automation_Live_Session_Agent.aspx ---- - - - -## Engagement Automation Live Session Agent 2.0 - - -[Sitecore Engagement Automation Live Session Agent 2.0](/downloads/Engagement_Automation_Live_Session_Agent/20/Sitecore_Engagement_Automation_Live_Session_Agent_20) - - - - - -## Engagement Automation Live Session Agent 1.0 - - -[Sitecore Engagement Automation Live Session Agent 1.0](/downloads/Engagement_Automation_Live_Session_Agent/10/Sitecore_Engagement_Automation_Live_Session_Agent_10) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/10/Express_Migration_Tool_10_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/10/Express_Migration_Tool_10_Initial_Release/Release_Notes.md deleted file mode 100644 index 4cb193a42..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/10/Express_Migration_Tool_10_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Express_Migration_Tool/10/Express_Migration_Tool_10_Initial_Release/Release_Notes ---- - -**August 2016 – released Express Migration Tool 1.0 (rev. 160811)** - -​The Sitecore Express Migration Tool allows a developer to migrate content from one version of Sitecore to another. It is designed to help customers move to the latest version of Sitecore, without having to upgrade versions individually. The tool is a separate application for the Windows operating system that is not bundled in the Platform, but supported and updated separately. - -Wizard-style Windows application that allows you to: - -- Migrate solution specific items from core and master databases on the source deployment -- Migrate solution specific media (database or file backed) -- Assist with migrating configuration options: - -- Generate configuration patch file(s) that can be applied for target instance -- Generate configuration diff files in cases when patching is not possible -- Mark the configuration options that have been changed between versions - -- Migrate security settings, custom user roles and users -- Support both remote and local migration - -## New feature/improvements - - | Description | - | --- | - | ​You can migrate from the following Sitecore versions:

- Sitecore CMS and DMS 7.2 rev.1601231 (7.2 Update-6)
- Sitecore CMS and DMS 7.2 rev.151021 (7.2 Update-5)
- Sitecore CMS and DMS 7.2 rev.150408 (7.2 Update-4)
- Sitecore CMS and DMS 7.2 rev.141226 (7.2 Service Pack-1)
- Sitecore CMS and DMS 7.2 rev.140526 (7.2 Update-2)
- Sitecore CMS and DMS 7.2 rev.140314 (7.2 Update-1)
- Sitecore CMS and DMS 7.2 rev.140228 (7.2 Initial Release)​

| - | ​You can migrate your Sitecore instance to

- Sitecore Experience Platform 8.2 Initial release

| - | The Express Migration tool migrates solution-specific items from core and master databases on the source deployment. | - | The Express Migration tool migrates solution-specific media (both database and files). | - | The Express Migration Tool automatically generates configuration patch file(s) that can be applied on a target instance. If patching is not possible or does not make sense, the tool generates configuration difference files. | - | The tool highlights the configuration options that have been altered or the default values that have been changed between the source and target versions. | - | The tool copies security settings, custom user roles, and user accounts from source to target instances​. | - | The Express Migration Tool enables you to upgrade from Sitecore 7.2 to Sitecore 8.2 without having to upgrade to all the interim versions individually.​ | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/10/Express_Migration_Tool_10_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/10/Express_Migration_Tool_10_Initial_Release/index.md deleted file mode 100644 index 4c84e4aa3..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/10/Express_Migration_Tool_10_Initial_Release/index.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Express Migration Tool 1.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Express_Migration_Tool/10/Express_Migration_Tool_10_Initial_Release ---- - -The Sitecore Express Migration Tool makes it easy for customers to help migrate any version of Sitecore 7.2 to the latest version of Sitecore Experience Platform 8.2 without the need to gradually upgrade from version to version. -Please note that DMS data to xDB will still require the use of the conversion tools found on the [Sitecore Experience Platform download pages](/downloads/Sitecore_Experience_Platform). - -The Express Migration Tool Migrates:  - -- Content items and media  -- All users, roles and security permissions  -- Assists with configuration migrations - -## Downloads - - | Resource | Description | - | --- | --- | - | [Express Migration Tool](https://scdp.blob.core.windows.net/downloads/Express%20Migration%20Tool/10/Express%20Migration%20Tool%2010%20Initial%20Release/Secure/Sitecore%20Express%20Migration%20Tool%201.0%20rev.%20160811.zip) | Download the Express Migration Tool. The package includes all required binary files to run the tool. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Express_Migration_Tool/10/Express_Migration_Tool_10_Initial_Release/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known Issues](https://kb.sitecore.net/articles/631685) | Choose this link to access the Sitecore Knowledge Base. | - | [Express Migration Tool Guide](https://scdp.blob.core.windows.net/downloads/Express%20Migration%20Tool/10/Express%20Migration%20Tool%2010%20Initial%20Release/Secure/Express-migration-tool-1.0-guide.pdf) | Instructions how to use the Express Migration Tool. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/20/Express_Migration_Tool_20_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/20/Express_Migration_Tool_20_Initial_Release/Release_Notes.md deleted file mode 100644 index 3314bdad3..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/20/Express_Migration_Tool_20_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Express_Migration_Tool/20/Express_Migration_Tool_20_Initial_Release/Release_Notes ---- - -**December 2016 – released Express Migration Tool 2.0 (rev. 161208)** - -​The Sitecore Express Migration Tool enables you to migrate content from one version of Sitecore to another. It is designed to help customers move to the latest version of Sitecore, without having to upgrade versions individually. The tool is a separate application for the Windows operating system that is not bundled in the Platform, but supported and updated separately. - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​The express migration tool now supports migration from Sitecore CMS 6.6. The following revisions are supported:

- Sitecore 6.6.0 rev.140410 (Service Pack-2)
- Sitecore 6.6.0 rev.131211 (Update-7)
- Sitecore 6.6.0 rev.130529 (Service Pack-1)
- Sitecore 6.6.0 rev.130404 (Update-5)
- Sitecore 6.6.0 rev.130214 (Update-4)
- Sitecore 6.6.0 rev.130111 (Update-3)
- Sitecore 6.6.0 rev.121203 (Update-2)
- Sitecore 6.6.0 rev.121015 (Update-1)
- Sitecore 6.6.0 rev.120918 (Initial Release)

| | | - | The Express Migration Tool can now migrate Web Forms For Marketers 2.4 to Web Forms For Marketers 8.2 Update-1. The following revisions are supported:

- Web Forms for Marketers 2.4 rev. 140117 on Sitecore 7.2
- Web Forms for Marketers 2.4 rev. 140923 on Sitecore 7.2
- Web Forms for Marketers 2.4 rev. 141008 on Sitecore 7.2
- Web Forms for Marketers 2.4 rev. 150619 on Sitecore 7.2
- Web Forms for Marketers 2.4 rev. 151103 on Sitecore 7.2

This version only supports migration of web forms data to SQL-server based WFFM setups. | | | - | The Comparison Instance can now be enabled directly from the user interface. | | 121907 | - | The logic, which handles migration of items with different IDs on the comparison, source, and target instances has been improved. | | 124729 | - | The Express Migration Tool provides an API for third-party developers to extend the tool with custom plugins. | | | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​Configuration with broken xml results in a failed migration of all configuration files - not just the broken files. | | 123090 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/20/Express_Migration_Tool_20_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/20/Express_Migration_Tool_20_Initial_Release/index.md deleted file mode 100644 index 22bc0fb6f..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/20/Express_Migration_Tool_20_Initial_Release/index.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: "Express Migration Tool 2.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Express_Migration_Tool/20/Express_Migration_Tool_20_Initial_Release ---- - -The Sitecore Express Migration Tool makes it easy for customers to help migrate Sitecore 7.2 or Sitecore 6.6 to Sitecore Experience Platform 8.2 Update-1 without the need to gradually upgrade from version to version. -Please note that DMS data to xDB will still require the use of the conversion tools found on the [Sitecore Experience Platform download pages](/downloads/Sitecore_Experience_Platform). - -The Express Migration Tool Migrates:  - -- Content items and media  -- All users, roles and security permissions  -- Assists with configuration migrations -- Web Forms For Marketers 2.4 items and data - -## Downloads - - | Resource | Description | - | --- | --- | - | [Express Migration Tool](https://scdp.blob.core.windows.net/downloads/Express%20Migration%20Tool/20/Express%20Migration%20Tool%2020%20Initial%20Release/Secure/Sitecore%20Express%20Migration%20Tool%202.0%20rev.%20161208.zip) | Download the Express Migration Tool. The package includes all required binary files to run the tool. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Express_Migration_Tool/20/Express_Migration_Tool_20_Initial_Release/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known Issues](https://kb.sitecore.net/articles/583017) | Choose this link to access the known issues list on the Sitecore Knowledge Base. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Express Migration Tool Guide](https://scdp.blob.core.windows.net/downloads/Express%20Migration%20Tool/20/Express%20Migration%20Tool%2020%20Initial%20Release/Secure/Express-Migration-Tool-20-Guide.pdf) | Instructions how to use the Express Migration Tool. | - | [Express Migration Plugin Guide and API reference](https://scdp.blob.core.windows.net/downloads/Express%20Migration%20Tool/20/Express%20Migration%20Tool%2020%20Initial%20Release/Secure/Sitecore-Express-Migration-20-Plugin-Guide.pdf) | This document contains description of the plugin subsystem. You can use it to extend the tool. | - | [WFFM Configuration File Changes](https://scdp.blob.core.windows.net/downloads/Express%20Migration%20Tool/20/Express%20Migration%20Tool%2020%20Initial%20Release/Secure/WFFM-82-ConfigFileChanges.pdf) | This document describes the changes that have been made to the configuration files in Sitecore Web Forms for Marketers (WFFM) between the Sitecore WFFM 2.4 rev. 140117 Initial release and the Sitecore WFFM 8.2 Update-1.
You should use this document as a reference when you use the Express Migration Tool to migrate the Web Forms for Marketers. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/30/Express_Migration_Tool_30_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/30/Express_Migration_Tool_30_Initial_Release/Release_Notes.md deleted file mode 100644 index 824c61f9f..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/30/Express_Migration_Tool_30_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Express_Migration_Tool/30/Express_Migration_Tool_30_Initial_Release/Release_Notes ---- - -**October 2017 – released Express Migration Tool 3.0 (rev. 171011)** - -​The Sitecore Express Migration Tool enables you to migrate content from one version of Sitecore to another. It is designed to help customers move to the latest version of Sitecore, without having to upgrade versions individually. The tool is a separate application for the Windows operating system that is not bundled in the Platform, but supported and updated separately. - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​The Express Migration Tool now supports migrating to Sitecore 9.0 Initial Release. | | 156172 | - | The Express Migration Tool now supports migrating from every version of Sitecore 6.6, 7.2, 7.5, and 8.0 to Sitecore 9.0.
The supported versions are:

- Sitecore 8.0 rev. 160115 (8.0 Update-7)
- Sitecore 8.0 rev. 151127 (8.0 Update-6)
- Sitecore 8.0 rev. 150812 (8.0 Update-5)
- Sitecore 8.0 rev. 150621 (8.0 Update-4)
- Sitecore 8.0 rev. 150427 (8.0 Update-3)
- Sitecore 8.0 rev. 150223 (8.0 Update-2)
- Sitecore 8.0 rev. 150121 (8.0 Update-1)
- Sitecore 8.0 rev. 141212 (8.0 Initial Release)
- Sitecore 7.5 rev.150212 (Update-2)
- Sitecore 7.5 rev.150130 (Update-1)
- Sitecore 7.5 rev.141003 (Initial Release)
- Sitecore 7.2 rev. 160123 (7.2 Update-6)
- Sitecore 7.2 rev. 151021 (7.2 Service Pack-2, originally 7.2 Update-5)
- Sitecore 7.2 rev. 150408 (7.2 Update-4)
- Sitecore 7.2 rev. 141226 (7.2 Service Pack-1, originally 7.2 Update-3)
- Sitecore 7.2 rev. 140526 (7.2 Update-2)
- Sitecore 7.2 rev. 140314 (7.2 Update-1)
- Sitecore 7.2 rev. 140228 (7.2 Initial Release)
- Sitecore 6.6.0 rev. 140410 (6.6.0 Service Pack-2, originally released as 6.6 Update-8
- Sitecore 6.6.0 rev. 131211 (6.6.0 Update-7)
- Sitecore 6.6.0 rev. 130529 (6.6.0 Service Pack-1 Update-6)
- Sitecore 6.6.0 rev. 130404 (6.6.0 Update-5)
- Sitecore 6.6.0 rev. 130214 (6.6.0 Update-4)
- Sitecore 6.6.0 rev. 130111 (6.6.0 Update-3)
- Sitecore 6.6.0 rev. 121203 (6.6.0 Update-2)
- Sitecore 6.6.0 rev. 121015 (6.6.0 Update-1)
- Sitecore 6.6.0 rev. 120918 (6.6.0 Initial Release)

| | 1561179,163673 | - | The Express Migration Tool now supports migrating every revision of Web Forms For Marketers 2.4 that runs on Sitecore 7.1 and 7.2 to Web Forms For Marketers 9.0​. | | 163684 | - | The performance of the Express Migration Tool has been improved so that data blob migration takes less time. | | 178986 | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Renderings are missing additional parameters after upgrading an instance using the Express Migration Tool​. | | 181532 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/30/Express_Migration_Tool_30_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/30/Express_Migration_Tool_30_Initial_Release/index.md deleted file mode 100644 index aafcca8a2..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/30/Express_Migration_Tool_30_Initial_Release/index.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: "Express Migration Tool 3.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Express_Migration_Tool/30/Express_Migration_Tool_30_Initial_Release.aspx ---- - -The Sitecore Express Migration Tool makes it easy for customers to help migrate Sitecore 6.6,7.2, 7.5 or 8.0 to the latest version of Sitecore Experience Platform 9.0 without the need to gradually upgrade from version to version. -Please note that DMS data to xDB will still require the use of the conversion tools found on the [Sitecore Experience Platform download pages](/downloads/Sitecore_Experience_Platform). - -The Express Migration Tool Migrates:  - -- Content items and media  -- All users, roles and security permissions  -- Assists with configuration migrations -- Web Forms For Marketers 2.4 items and data - -## Downloads - - | Resource | Description | - | --- | --- | - | [Express Migration Tool](https://scdp.blob.core.windows.net/downloads/Express%20Migration%20Tool/30/Express%20Migration%20Tool%2030%20Initial%20Release/Secure/Sitecore%20Express%20Migration%20Tool%203.0%20rev.%20171011.zip) | Download the Express Migration Tool. The package includes all required binary files to run the tool. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Express_Migration_Tool/30/Express_Migration_Tool_30_Initial_Release/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known Issues](https://kb.sitecore.net/articles/583017) | Choose this link to access the known issues list on the Sitecore Knowledge Base. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Express Migration Tool Guide](https://scdp.blob.core.windows.net/downloads/Express%20Migration%20Tool/30/Express%20Migration%20Tool%2030%20Initial%20Release/Secure/Express-Migration-Tool-30-Guide.pdf) | Instructions how to use the Express Migration Tool. | - | [Express Migration Plugin Guide and API reference](https://scdp.blob.core.windows.net/downloads/Express%20Migration%20Tool/30/Express%20Migration%20Tool%2030%20Initial%20Release/Secure/Sitecore-Express-Migration-30-Plugin-Guide.pdf) | This document contains description of the plugin subsystem. You can use it to extend the tool. | - | [WFFM Configuration File Changes](https://scdp.blob.core.windows.net/downloads/Express%20Migration%20Tool/30/Express%20Migration%20Tool%2030%20Initial%20Release/Secure/ConfigFileChangesDOC_90.pdf) | This document describes the changes that have been made to the configuration files in Sitecore Web Forms for Marketers (WFFM) between the Sitecore WFFM 2.4 rev. 140117 Initial release and the Sitecore WFFM 9.0 Initial Release.You should use this document as a reference when you use the Express Migration Tool to migrate the Web Forms for Marketers. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/31/Express_Migration_Tool_31/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/31/Express_Migration_Tool_31/Release_Notes.md deleted file mode 100644 index 987595fc9..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/31/Express_Migration_Tool_31/Release_Notes.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Express_Migration_Tool/31/Express_Migration_Tool_31/Release_Notes ---- - -**December 2017 – released Express Migration Tool 3.1 (rev. 171208)** - -​The Sitecore Express Migration Tool enables you to migrate content from one version of Sitecore to another. It is designed to help customers move to the latest version of Sitecore, without having to upgrade versions individually. The tool is a separate application for the Windows operating system that is not bundled in the Platform, but supported and updated separately. - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | The Express Migration Tool now supports migrating the Web Forms For Marketers revisions 2.3, 2.4, 2.5, and 8.0 to the Web Forms For Marketers 9.0​ Initial release.
The supported versions are:

- Web Forms for Marketers 2.3.0 rev. 110530 running on Sitecore 6.6.0
- Web Forms for Marketers 2.3.0 rev. 111209 running on Sitecore 6.6.0
- Web Forms for Marketers 2.3.0 rev. 120216 running on Sitecore 6.6.0
- Web Forms for Marketers 2.3.0 rev. 130118 running on Sitecore 6.6.0
- Web Forms for Marketers 2.3.0 rev. 131126 running on Sitecore 6.6.0
- Web Forms for Marketers 2.3 rev. 140617 running on Sitecore 6.6.0
- Web Forms for Marketers 2.4 rev. 140117 running on Sitecore 7.2
- Web Forms for Marketers 2.4 rev. 140813 running on Sitecore 7.2
- Web Forms for Marketers 2.4 rev. 140923 running on Sitecore 7.2
- Web Forms for Marketers 2.4 rev. 141008 running on Sitecore 7.2
- Web Forms for Marketers 2.4 rev. 150619 running on Sitecore 7.2
- Web Forms for Marketers 2.4 rev. 151103 running on Sitecore 7.2
- Web Forms for Marketers 2.5 rev. 141014 running on Sitecore 7.5 Initial Release
- Web Forms for Marketers 2.5 rev. 150209 running on Sitecore 7.5 Update 1 or Sitecore 7.5 Update 2
- Web Forms for Marketers 8.0 rev. 141217 running on Sitecore 8.0 Initial Release or Sitecore 8.0 Update 1
- Web Forms for Marketers 8.0 rev. 150224 running on Sitecore 8.0 Update 2
- Web Forms for Marketers 8.0 rev. 150429 running on Sitecore 8.0 Update 3
- Web Forms for Marketers 8.0 rev. 150625 running on Sitecore 8.0 Update 4 or Sitecore 8.0 Update 5
- Web Forms for Marketers 8.0 rev. 151127 running on Sitecore 8.0 Update 6 or Sitecore 8.0 Update 7

| - | 186911, 163652 | - | ​The Express Migration tool now re​​-​​attempts to migrate files that failed to migrate.​ | - | 116374 | - | The Express Migration Tool now detects configuration nodes that have had server-role configuration rules applied to them in SXP 9.0 and marks them with comments. | - | 178988 | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | The Express Migration tool does not migrate workflow comments and history from the WorkflowHistory table. | 481856 - | 156875 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/31/Express_Migration_Tool_31/index.md b/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/31/Express_Migration_Tool_31/index.md deleted file mode 100644 index a742bc56c..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/31/Express_Migration_Tool_31/index.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: "Express Migration Tool 3.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Express_Migration_Tool/31/Express_Migration_Tool_31.aspx ---- - -The Sitecore Express Migration Tool makes it easy for customers to help migrate Sitecore 6.6, 7.2, 7.5 or 8.0 to Sitecore Experience Platform 9.0 (Initial Release) without the need to gradually upgrade from version to version. -Please note that DMS data to xDB will still require the use of the conversion tools found on the [Sitecore Experience Platform download pages](/downloads/Sitecore_Experience_Platform). - -The Express Migration Tool Migrates:  - -- Content items and media  -- All users, roles and security permissions  -- Assists with configuration migrations -- Web Forms For Marketers items and data - -## Downloads - - | Resource | Description | - | --- | --- | - | [Express Migration Tool](https://scdp.blob.core.windows.net/downloads/Express%20Migration%20Tool/31/Express%20Migration%20Tool%2031/Secure/Sitecore%20Express%20Migration%20Tool%203.1%20rev.%20171208.zip) | Download the Express Migration Tool. The package includes all required binary files to run the tool. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Express_Migration_Tool/31/Express_Migration_Tool_31/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known Issues](https://kb.sitecore.net/articles/583017) | Choose this link to access the known issues list on the Sitecore Knowledge Base. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Express Migration Tool Guide](https://scdp.blob.core.windows.net/downloads/Express%20Migration%20Tool/31/Express%20Migration%20Tool%2031/Secure/Express%20migration%20guidelines%203.1.pdf) | Instructions how to use the Express Migration Tool. | - | [Express Migration Plugin Guide and API reference](https://scdp.blob.core.windows.net/downloads/Express%20Migration%20Tool/31/Express%20Migration%20Tool%2031/Secure/Sitecore%20Express%20Migration%20Plugin%20Guide_3.1.pdf) | This document contains description of the plugin subsystem. You can use it to extend the tool. | - | [WFFM Configuration File Changes](https://scdp.blob.core.windows.net/downloads/Express%20Migration%20Tool/30/Express%20Migration%20Tool%2030%20Initial%20Release/Secure/ConfigFileChangesDOC_90.pdf) | This document describes the changes that have been made to the configuration files in Sitecore Web Forms for Marketers (WFFM) between the Sitecore WFFM 2.4 rev. 140117 Initial release and the Sitecore WFFM 9.0 Initial Release.You should use this document as a reference when you use the Express Migration Tool to migrate the Web Forms for Marketers. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/index.md b/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/index.md deleted file mode 100644 index dde3ab8e6..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Express_Migration_Tool/index.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: "Sitecore Express Migration Tool" -description: "The Sitecore Express Migration Tool makes it easy for customers to help migrate older instances to the latest version of Sitecore Experience Platform without the need to gradually upgrade from version to version." -origin: https://dev.sitecore.net/Downloads/Express_Migration_Tool.aspx ---- - - - -## Sitecore Express Migration Tool 3.1 - - -[Express Migration Tool 3.1](/downloads/Express_Migration_Tool/31/Express_Migration_Tool_31) - - - - - -## Sitecore Express Migration Tool 3.0 - - -[Express Migration Tool 3.0](/downloads/Express_Migration_Tool/30/Express_Migration_Tool_30_Initial_Release) - - - - - -## Sitecore Express Migration Tool 2.0 - - -[Express Migration Tool 2.0](/downloads/Express_Migration_Tool/20/Express_Migration_Tool_20_Initial_Release)\ -This release supports migration of any version of Sitecore 6.6 or Sitecore 7.2 to Sitecore XP 8.2 Update-1, and migration of Web Forms For Marketers module 2.4 to Web Forms For Marketers  8.2 Update-1. - - - - - -## Sitecore Express Migration Tool 1.0 - - -[Express Migration Tool 1.0](/downloads/Express_Migration_Tool/10/Express_Migration_Tool_10_Initial_Release)\ -This release supports migration of any version of Sitecore 7.2 to the initial release of the Sitecore Experience Platform 8.2. - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Komfo_Connector/10/Komfo_Connector_10/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Komfo_Connector/10/Komfo_Connector_10/Release_Notes.md deleted file mode 100644 index 8a49ab6a6..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Komfo_Connector/10/Komfo_Connector_10/Release_Notes.md +++ /dev/null @@ -1,87 +0,0 @@ ---- -title: "Komfo Connector 1.0 – Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Komfo_Connector/10/Komfo_Connector_10/Release_Notes ---- - -**January 2016 – release compatible with Sitecore Experience Platform 8.1** - -This a module release for Sitecore and Komfo customers. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -## Highlights - -Komfo Connector provides a simple and effective way to create custom audiences using Sitecore xDB data that can be used for advertising on social networks. The tool also provides quick access to the Komfo platform and gives an analytics overview of the social channel, therefore allowing social media marketers to bring the power of Sitecore’s xDB segmentation, list management and campaign creation together with Komfo’s media management tools. It is possible to: - -- Create new custom audiences using existing Sitecore contact and segmented lists -- Send custom audiences to Komfo -- Apply automatic synchronization so that custom audiences are kept up to date with relevant contacts -- Match custom audiences by email address, telephone number or Facebook ID to maximize match rates and potential audience reach -- Apply Sitecore campaigns to custom audiences for tracking purposes -- Link to Experience Analytics for single campaign activity performance view - -## Documentation - -For all Sitecore Experience Platform 8.0 documentation, please visit the new [Sitecore Documentation Site](http://doc.sitecore.net). - -## System requirements - -Before installing the Komfo Connector, ensure that the following is installed: - -- Sitecore XP 8.1 - -- SQL Server – for optimal performance, you should use SQL Server Enterprise Edition. - -To be able to work with Komfo Connector, the following is required: - -- Facebook Ad account -- Komfo account - -## New features & improvements - -Komfo Connector is an optional module that provides a user friendly interface to create custom audiences, building on functionality currently found in List Manager, Campaign Creator, and the segmentation capabilities of xDB. Komfo Connector is a hub for social channel management, giving you easy access to the Komfo platform and Experience Analytics. - -This module facilitates a seamless connection between the Sitecore and Komfo platforms in order to utilize Sitecore audience segments and contact lists in Komfo social campaigns, for example, Facebook retargeted advertising. You can associate custom audiences with new Sitecore campaigns in order to track the results of specific marketing activities, or you can simply associate the audiences to existing campaigns. - -Features include: - -- Dedicated Komfo Connector app accessible from the Sitecore Launchpad -- Social channel Experience Analytics view -- Analytics filtering by date range and site -- Komfo platform fully integrated with Sitecore XP to allow easy cross-platform access -- Set up wizard to create new Komfo client accounts that enable access to Komfo from Sitecore -- Contains the ability to create custom audiences from Sitecore xDB contacts that can be passed to Komfo and subsequently matched by social networks such as Facebook to facilitate targeted and relevant advertising campaigns -- Custom audience campaigns are tagged with a Sitecore campaign URL string in order to track how campaigns using the custom audiences perform in terms of traffic and visitor value. -- Provides an overview of all custom audiences, including the ability to search for specific custom audiences -- Supports multiple Komfo client accounts, so that different custom audiences can be sent to different accounts using the same interface -- Select the fields to be matched in order to maximize the likelihood of contacts being matched by the social network -- Choose how often a custom audience list is synchronized, to ensure that custom audiences are kept up to date in accordance with the needs of the advertising campaign -- Synchronization can be pushed, paused and restarted in order to allow marketers maximum control over their custom audiences. -- See at a glance exactly how up to date your advertising audiences are from feedback on custom audience synchronization and posting statuses -- Get feedback on approximately how many contacts are currently matched by the social network to assess the impact your custom audiences campaigns have -- Failsafe delete mechanism ensure that custom audiences are not deleted if they are active in current Komfo advertising activities. -- Select either dynamic Segmented Lists or static Contact Lists to be used in custom audiences, in line with marketing needs -- Seamless integration with the Campaign Creator application allows for the creation of on-the-fly new campaigns to be associated with a custom audience. -- Tag campaign activities with taxonomy facets for ease of access and organization -- Link to Experience Analytics for a specific, in-depth campaign view -- Specify the dates and times that campaign activities are valid or provision for open ended campaign activities -- Associate custom audiences with existing campaigns to simplify campaign reporting -- Komfo login credentials are stored encrypted for maximum security. -- Contact details communicated across platforms securely -- Matched contacts are kept anonymous in order to maintain data protection standards - -## KomfoSharp for developers - -As part of the Komfo Connector release, KomfoSharp is provided as a development tool for Komfo customers. KomfoSharp is an API wrapper that is used to make calls to the Komfo REST API with the simple "Client Credentials Grant" protocol. - -The following actions may be performed using KomfoSharp: - -- Authenticate and authorize with the API -- Access the stream and user profile metrics for the fans of Twitter channels -- Manage Custom Audiences by creating a custom audience and add or remove users to it -- Automatically handle the Komfo API rate limits -- Automatically handle the access token expiration -- Available at: [https://github.com/Sitecore/KomfoSharp](https://github.com/Sitecore/KomfoSharp) - -## Known issues - -- Matching custom audiences by Facebook ID requires a custom xDB index that is not yet available. As a result, Facebook ID matches will take longer than other matching fields. The new index is expected in the next available Sitecore XP update. (77763) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Komfo_Connector/10/Komfo_Connector_10/index.md b/apps/devportal/data/markdown/pages/downloads/Komfo_Connector/10/Komfo_Connector_10/index.md deleted file mode 100644 index 02b7988ab..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Komfo_Connector/10/Komfo_Connector_10/index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Komfo Connector 1.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Komfo_Connector/10/Komfo_Connector_10.aspx ---- - -**Note that Sitecore no longer supports Komfo Connector. Please refer any questions or support issues directly to Komfo.** - -Komfo Connector provides a simple and effective way to create custom audiences using Sitecore xDB data that can be used for advertising on social networks. The tool also provides quick access to the Komfo platform and gives an analytics overview of the social channel, therefore allowing social media marketers to bring the power of Sitecore’s xDB segmentation, list management and campaign creation together with Komfo’s media management tools. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Komfo Connector](https://scdp.blob.core.windows.net/downloads/Komfo%20Connector/10/Komfo%20Connector%201.0/Secure/Sitecore%20Komfo%20Connector%201.0%20rev.%20160122.zip) | Download the files that you need for the installation of the Komfo Connector module. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Komfo_Connector/10/Komfo_Connector_10/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation Guide](https://doc.sitecore.net:443/en/Products/Social_Connected/81/Working_with_the_Komfo_Connector/Setting_up/Install_and_configure_the_Komfo_Connector) | The installation procedure for the Komfo Connector module. | - | [Documentation](https://doc.sitecore.net:443/en/Products/Social_Connected/81/Working_with_the_Komfo_Connector) | Documentation for the Komfo Connector module. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Komfo_Connector/index.md b/apps/devportal/data/markdown/pages/downloads/Komfo_Connector/index.md deleted file mode 100644 index f5f1debdf..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Komfo_Connector/index.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "Komfo Connector" -description: "Komfo Connector provides a simple and effective way to create custom audiences using Sitecore xDB data that can be used for advertising on social networks. The tool also provides quick access to the Komfo platform and gives an analytics overview of the social channel, therefore allowing social media marketers to bring the power of Sitecore’s xDB segmentation, list management and campaign creation together with Komfo’s media management tools." -origin: https://dev.sitecore.net/Downloads/Komfo_Connector.aspx ---- - - - -## Komfo Connector 1.0 - - -[Komfo Connector 1.0](/downloads/Komfo_Connector/10/Komfo_Connector_10) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Package_Management_Service/3x/Package_Management_Service_300/index.md b/apps/devportal/data/markdown/pages/downloads/Package_Management_Service/3x/Package_Management_Service_300/index.md deleted file mode 100644 index ab7798960..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Package_Management_Service/3x/Package_Management_Service_300/index.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Package Management Service 3.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Package_Management_Service/3x/Package_Management_Service_300.aspx ---- - -This version of the Package Management Service is compatible with Sitecore 9.0 Update-2 and Sitecore 9.1 Initial Release. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Package Management Service](https://scdp.blob.core.windows.net/downloads/Package%20Management%20Service/3x/Package%20Management%20Service%20300/Secure/Package%20Management%20Service%203.0.0%20rev.%20181105.zip) | Package contains deployment scripts for Azure and OnPrem and the services itself. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Package_Management_Service/5x/Package_Management_Service_500/index.md b/apps/devportal/data/markdown/pages/downloads/Package_Management_Service/5x/Package_Management_Service_500/index.md deleted file mode 100644 index 743b17243..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Package_Management_Service/5x/Package_Management_Service_500/index.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Package Management Service 5.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Package_Management_Service/5x/Package_Management_Service_500.aspx ---- - -This version of the Package Management Service is compatible with Sitecore 9.0 Update-2 and newer. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Package Management Service](https://scdp.blob.core.windows.net/downloads/Package%20Management%20Service/5x/Package%20Management%20Service%20500/Secure/Package%20Management%20Service%205.0.0%20rev.%2000078.zip) | Package contains deployment scripts for Azure and OnPrem and the services itself. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Package_Management_Service/index.md b/apps/devportal/data/markdown/pages/downloads/Package_Management_Service/index.md deleted file mode 100644 index 5074d891d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Package_Management_Service/index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Package Management Service" -description: "The Package Management Service is an opt-in mechanism for distributing update packages to the Update Center content management application." -origin: https://dev.sitecore.net/Downloads/Package_Management_Service.aspx ---- - - - -## Package Management Service 5.x - - -[Package Management Service 5.0.0](/downloads/Package_Management_Service/5x/Package_Management_Service_500) - - - - - -## Package Management Service 3.x - - -[Package Management Service 3.0.0](/downloads/Package_Management_Service/3x/Package_Management_Service_300) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100/index.md b/apps/devportal/data/markdown/pages/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100/index.md deleted file mode 100644 index 474918831..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100/index.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Resource files for Modules 1.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100 ---- - -Module resource files for upgrading Core, Master and Web databases. Use the packages for the modules and versions from which you are upgrading. Use the version of the [UpdateApp tool](/downloads/Sitecore_UpdateApp_Tool) specifically provided for and compatible with the version from which you are upgrading. - -Resource files for Modules 1.0.0 is used for upgrading to Sitecore XP 10.2, 10.3, and 10.4. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework Upgrade resources](https://scdp.blob.core.windows.net/downloads/Resource%20files%20for%20Modules/1x/Resource%20files%20for%20Modules%20100/Secure/Data%20Exchange%20Framework%20Upgrade%20resources%201.0.0.zip) | Items as Resources for Data Exchange Framework. | - | [Dynamics CRM Connect Upgrade resources](https://scdp.blob.core.windows.net/downloads/Resource%20files%20for%20Modules/1x/Resource%20files%20for%20Modules%20100/Secure/Dynamics%20CRM%20Connect%20Upgrade%20resources%201.0.0.zip) | Items as Resources for Dynamics CRM Connect. | - | [Horizon Upgrade resources](https://scdp.blob.core.windows.net/downloads/Resource%20files%20for%20Modules/1x/Resource%20files%20for%20Modules%20100/Secure/Horizon%20Upgrade%20resources%201.0.0.zip) | Items as Resources for Horizon. Only supports Sitecore XP 10.2 and does not support Sitecore XP 10.3. | - | [Publishing Service Upgrade resources](https://scdp.blob.core.windows.net/downloads/Resource%20files%20for%20Modules/1x/Resource%20files%20for%20Modules%20100/Secure/Publishing%20Service%20Upgrade%20resources%201.0.0.zip) | Items as Resources for Publishing Service. | - | [Salesforce CRM Connect Upgrade resources](https://scdp.blob.core.windows.net/downloads/Resource%20files%20for%20Modules/1x/Resource%20files%20for%20Modules%20100/Secure/Salesforce%20CRM%20Connect%20Upgrade%20resources%201.0.0.zip) | Items as Resources for Salesforce CRM Connect. | - | [SFMC - BDE Upgrade resources](https://scdp.blob.core.windows.net/downloads/Resource%20files%20for%20Modules/1x/Resource%20files%20for%20Modules%20100/Secure/SFMC%20-%20BDE%20Upgrade%20resources%201.0.0.zip) | Items as Resources for SFMC - BDE. | - | [SFMC - Content Exchange Upgrade resources](https://scdp.blob.core.windows.net/downloads/Resource%20files%20for%20Modules/1x/Resource%20files%20for%20Modules%20100/Secure/SFMC%20-%20Content%20Exchange%20Upgrade%20resources%201.0.0.zip) | Items as Resources for SFMC - Content Exchange. | - | [Sitecore Connect for Content Hub Upgrade resources](https://scdp.blob.core.windows.net/downloads/Resource%20files%20for%20Modules/1x/Resource%20files%20for%20Modules%20100/Secure/Sitecore%20Connect%20for%20Content%20Hub%20Upgrade%20resources%201.0.0.zip) | Items as Resources for Sitecore Connect for Content Hub. | - | [Sitecore Connect for Sitecore CMP Upgrade resources](https://scdp.blob.core.windows.net/downloads/Resource%20files%20for%20Modules/1x/Resource%20files%20for%20Modules%20100/Secure/Sitecore%20Connect%20for%20Sitecore%20CMP%20Upgrade%20resources%201.0.0.zip) | Items as Resources for Sitecore Connect for Sitecore CMP. | - | [Sitecore Connect for Sitecore DAM Upgrade resources](https://scdp.blob.core.windows.net/downloads/Resource%20files%20for%20Modules/1x/Resource%20files%20for%20Modules%20100/Secure/Sitecore%20Connect%20for%20Sitecore%20DAM%20Upgrade%20resources%201.0.0.zip) | Items as Resources for Sitecore Connect for Sitecore DAM. | - | [Sitecore Headless Services Upgrade resources](https://scdp.blob.core.windows.net/downloads/Resource%20files%20for%20Modules/1x/Resource%20files%20for%20Modules%20100/Secure/Sitecore%20Headless%20Services%20Upgrade%20resources%201.0.0.zip) | Items as Resources for Sitecore Headless Services. | - | [SPE Upgrade resources](https://scdp.blob.core.windows.net/downloads/Resource%20files%20for%20Modules/1x/Resource%20files%20for%20Modules%20100/Secure/SPE%20Upgrade%20resources%201.0.0.zip) | Items as Resources for SPE. | - | [SXA Upgrade resources](https://scdp.blob.core.windows.net/downloads/Resource%20files%20for%20Modules/1x/Resource%20files%20for%20Modules%20100/Secure/SXA%20Upgrade%20resources%201.0.0.zip) | Items as Resources for SXA. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Resource_files_for_Modules/index.md b/apps/devportal/data/markdown/pages/downloads/Resource_files_for_Modules/index.md deleted file mode 100644 index 7db04f024..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Resource_files_for_Modules/index.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "Items as Resource files for Modules" -description: "Module resource files for upgrading Core, Master and Web. Aligns with SXP feature that moves default Sitecore items out datebases into resources. Download and use the packages for the modules and versions you are upgrading from." -origin: https://dev.sitecore.net/Downloads/Resource_files_for_Modules.aspx ---- - - - -## Resource files for Modules 1.x - - -[Resource files for Modules 1.0.0](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_20/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_20/Release_Notes.md deleted file mode 100644 index 6607377a6..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_20/Release_Notes.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_20/Release_Notes ---- - -**October 2017 – released Sitecore Connect for Salesforce CRM 2.0 (rev. 171013)** - -This is the first release of a new product. - -## Highlights - -- Support for Sitecore 9.0. -- Support for synchronizing contacts, campaign membership and tasks from Salesforce CRM to Sitecore Experience Database. - -## Documentation - -- Documentation links are available on the [Downloads](/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_20) page - -## System requirements - -- Sitecore Experience Platform 9.0 rev. 171002 (9.0 initial release) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_20/index.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_20/index.md deleted file mode 100644 index 184d8932c..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_20/index.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: "Sitecore Connect for Salesforce CRM 2.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_20.aspx ---- - -Synchronize data between Salesforce CRM and Sitecore Experience Platform. - - - - Sitecore Connect for Salesforce CRM version 2.0 requires Sitecore Experience Platform version 9.0. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 2.0](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%2020/Secure/Data%20Exchange%20Framework%202.0.0%20rev.%20171013.zip) | Sitecore Data Exchange Framework is the foundation for Sitecore Connect.DEF provides the ability to define the synchronization processes and data mappings that result in data being synchronized between Sitecore and 3rd party systems. | - | [Salesforce CRM Provider for Data Exchange Framework 2.0](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%2020/Secure/Salesforce%20Provider%20for%20Data%20Exchange%20Framework%202.0.0%20rev.%20171013.zip) | Provides the ability to read and write objects to Salesforce CRM. | - | [Sitecore Connect for Salesforce CRM 2.0](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%2020/Secure/Connect%20for%20Salesforce%202.0.0%20rev.%20171013.zip) | Pre-configured synchronization processes and data mapping for exchanging data between Sitecore Experience Platform and Salesforce CRM. | - | [Sitecore Provider for Data Exchange Framework 2.0](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%2020/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%202.0.0%20rev.%20171013.zip) | Provides the ability to read and write items to Sitecore content databases. | - | [xConnect Provider for Data Exchange Framework 2.0](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%2020/Secure/xConnect%20Provider%20for%20Data%20Exchange%20Framework%202.0.0%20rev.%20171013.zip) | Provides the ability to read and write data to the collection and reference data services of Sitecore xConnect. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_20/Release_Notes) | Release notes for Sitecore Connect for Salesforce CRM. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%2020/Secure/Sitecore%20Connect%20for%20Salesforce%202.0%20Installation%20Guide.pdf) | The installation and configuration procedure for the Sitecore Connect for Salesforce CRM. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-connect/20/sitecore-connect-for-salesforce-crm/en/index-en.html) | The Sitecore Developer Center has all of the documentation for Sitecore Connect for Salesforce CRM. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_201/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_201/Release_Notes.md deleted file mode 100644 index 071c4b8cf..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_201/Release_Notes.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_201/Release_Notes ---- - -**January 2018 – released Sitecore Connect for Salesforce CRM 2.0.1 (rev. 180108)** - -This is an update release. - -## Highlights - -- Support for Sitecore 9.0.1 -- Support for synchronizing campaign membership from Salesforce CRM to Sitecore Experience Database. -- Support for synchronizing contacts from Sitecore Experience Database to Salesforce CRM. -- Support for synchronizing email activity from Sitecore Experience Database to Salesforce CRM. - -## Documentation - -- Documentation links are available on the [Downloads](/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_201) page - -## System requirements - -- Sitecore Experience Platform 9.0 rev. 171219 (9.0 Update-1) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_201/index.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_201/index.md deleted file mode 100644 index d03788f89..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_201/index.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: "Sitecore Connect for Salesforce CRM 2.0.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_201.aspx ---- - -Synchronize data between Salesforce CRM and Sitecore Experience Platform. - - - - Sitecore Connect for Salesforce CRM version 2.0.1 requires Sitecore Experience Platform version 9.0 update 1. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20201/Secure/install/Data%20Exchange%20Framework%202.0.1%20rev.%20180108.zip) | Sitecore Data Exchange Framework is the foundation for Sitecore Connect.DEF provides the ability to define the synchronization processes and data mappings that result in data being synchronized between Sitecore and 3rd party systems. | - | [Salesforce CRM Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20201/Secure/install/Salesforce%20Provider%20for%20Data%20Exchange%20Framework%202.0.1%20rev.%20180108.zip) | Provides the ability to read and write objects to Salesforce CRM. | - | [Sitecore Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20201/Secure/install/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%202.0.1%20rev.%20180108.zip) | Provides the ability to read and write items to Sitecore content databases. | - | [xConnect Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20201/Secure/install/xConnect%20Provider%20for%20Data%20Exchange%20Framework%202.0.1%20rev.%20180108.zip) | Provides the ability to read and write data to the collection and reference data services of Sitecore xConnect. | - | [Sitecore Connect for Salesforce CRM 2.0.1](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20201/Secure/install/Connect%20for%20Salesforce%202.0.1%20rev.%20180108.zip) | Pre-configured synchronization processes and data mapping for exchanging data between Sitecore Experience Platform and Salesforce CRM. | - -## CD Server Files - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 2.0.1 CD server](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20201/Secure/install/CD%20server/Data%20Exchange%20Framework%20CD%20Server%202.0.1%20rev.%20180108.zip) | Sitecore Data Exchange Framework installation package for content delivery (CD) servers. | - | [Salesforce CRM Provider for Data Exchange Framework 2.0.1 CD server](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20201/Secure/install/CD%20server/Salesforce%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.0.1%20rev.%20180108.zip) | Salesforce CRM provider installation package for content delivery (CD) servers. | - | [Sitecore Provider for Data Exchange Framework 2.0.1 CD server](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20201/Secure/install/CD%20server/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.0.1%20rev.%20180108.zip) | Sitecore provider installation package for content delivery (CD) servers. | - | [xConnect Provider for Data Exchange Framework 2.0.1 CD server](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20201/Secure/install/CD%20server/xConnect%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.0.1%20rev.%20180108.zip) | xConnect provider installation package for content delivery (CD) servers. | - | [Sitecore Connect for Salesforce CRM 2.0.1 CD server](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20201/Secure/install/CD%20server/Connect%20for%20Salesforce%20CD%20Server%202.0.1%20rev.%20180108.zip) | Sitecore Connect for Salesforce CRM installation package for content delivery (CD) servers. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20201/Secure/update/Data%20Exchange%20Framework%202.0.1.update) | Update package you need to upgrade from Data Exchange Framework 2.0.0 rev. 171013 to 2.0.1 rev. 180108. | - | [Update Package for Salesforce CRM Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20201/Secure/update/Salesforce%20Provider%20for%20Data%20Exchange%20Framework%20%202.0.1.update) | Update package you need to upgrade from Salesforce CRM Provider for Data Exchange Framework 2.0.0 rev. 171013 to 2.0.1 rev. 180108. | - | [Update Package for Sitecore Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20201/Secure/update/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%202.0.1.update) | Update package you need to upgrade from Sitecore Provider for Data Exchange Framework 2.0.0 rev. 171013 to 2.0.1 rev. 180108. | - | [Update Package for xConnect Provider for Data Exchange Framework 2.0.1](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20201/Secure/update/xConnect%20Provider%20for%20Data%20Exchange%20Framework%202.0.1.update) | Update package you need to upgrade from xConnect Provider for Data Exchange Framework 2.0.0 rev. 171013 to 2.0.1 rev. 180108. | - | [Update Package for Sitecore Connect for Salesforce CRM 2.0.1](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20201/Secure/update/Connect%20for%20Salesforce%202.0.1.update) | Update package you need to upgrade from Sitecore Connect for Salesforce CRM 2.0.0 rev. 171013 to 2.0.1 rev. 180108. | - | [Data Exchange Framework SDK 2.0.1](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20201/Secure/update/Data%20Exchange%20Framework%20SDK%202.0.1%20rev.%20180108.zip) | Sitecore Data Exchange Framework SDK provides the tool used to install the tenant update definition file. | - | [Tenant Update Definition File for Sitecore Connect for Salesforce 2.0.1](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20201/Secure/update/Sitecore.DataExchange.Tools.SalesforceConnect.Local.Upgrade.config) | File for Data Exchange Framework SDK that allows tenants created with Sitecore Connect for Salesforce CRM 2.0 rev. 171013 to be upgraded to 2.0.1 rev. 180108. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_201/Release_Notes) | Release notes for Sitecore Connect for Salesforce CRM. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20201/Secure/Sitecore_Connect_for_Salesforce_2_0_1_Installation-en.pdf) | The installation and configuration procedure for the Sitecore Connect for Salesforce CRM. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-connect/20/sitecore-connect-for-salesforce-crm/en/index-en.html) | The Sitecore documentation portal has all of the documentation for Sitecore Connect for Salesforce CRM. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_210/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_210/Release_Notes.md deleted file mode 100644 index 29ac98cee..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_210/Release_Notes.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_210/Release_Notes ---- - -**November 2018, released SalesForce CRM Connect 2.1.** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Support for Sitecore XP 9.1. | | | - | ​​​You can now personalize content in Sitecore based on campaign membership in Salesforce. | | | - - | You can now segment users in list manager based on campaign membership in Salesforce. | | | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_210/index.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_210/index.md deleted file mode 100644 index c138667b7..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_210/index.md +++ /dev/null @@ -1,62 +0,0 @@ ---- -title: "Sitecore Connect for Salesforce CRM 2.1.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_210.aspx ---- - -Synchronize data between Salesforce CRM and Sitecore Experience Platform. - - - - Sitecore Connect for Salesforce CRM version 2.1.0 requires Sitecore Experience Platform version 9.1. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/Data%20Exchange%20Framework%202.1.0%20rev.%20181113.zip) | Sitecore Data Exchange Framework is the foundation for Sitecore Connect.DEF provides the ability to define the synchronization processes and data mappings that result in data being synchronized between Sitecore and 3rd party systems. | - | [Salesforce CRM Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/Salesforce%20Provider%20for%20Data%20Exchange%20Framework%202.1.0%20rev.%20181113.zip) | Provides the ability to read and write objects to Salesforce CRM. | - | [Sitecore Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%202.1.0%20rev.%20181113.zip) | Provides the ability to read and write items to Sitecore content databases. | - | [SQL Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/SQL%20Provider%20for%20Data%20Exchange%20Framework%202.1.0%20rev.%20181113.zip) | Provides the ability to read and write to databases that can be accessed using ADO.NET. It also provides the ability to run stored procedures on those databases. | - | [xConnect Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/XConnect%20Provider%20for%20Data%20Exchange%20Framework%202.1.0%20rev.%20181113.zip) | Provides the ability to read and write data to the collection and reference data services of Sitecore xConnect. | - | [Sitecore Connect for Salesforce CRM](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/Connect%20for%20Salesforce%202.1.0%20rev.%20181113.zip) | Pre-configured synchronization processes and data mapping for exchanging data between Sitecore Experience Platform and Salesforce CRM. | - | [Staging Database for Salesforce CRM](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/Sitecore.DataExchange.Staging.dacpac) | Dacpac used to deploy the staging database.The staging database is needed in order to synchronize marketing list membership. | - -## Tenant Service - - | Resource | Description | - | --- | --- | - | [Salesforce Provider for Tenant Service](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/Salesforce%20Provider%20for%20Tenant%20Service%20210%20rev%20181113scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Salesforce data on the Tenant Service or to work with Salesforce as an endpoint. | - -## CD Server Files - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework CD server](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/Data%20Exchange%20Framework%20CD%20Server%202.1.0%20rev.%20181113.zip) | Sitecore Data Exchange Framework installation package for content delivery (CD) servers. | - | [Salesforce CRM Provider for Data Exchange Framework CD server](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/Salesforce%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.1.0%20rev.%20181113.zip) | Salesforce CRM provider installation package for content delivery (CD) servers. | - | [Sitecore Provider for Data Exchange Framework CD server](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.1.0%20rev.%20181113.zip) | Sitecore provider installation package for content delivery (CD) servers. | - | [SQL Provider for Data Exchange Framework CD server](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/SQL%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.1.0%20rev.%20181113.zip) | SQL provider installation package for content delivery (CD) servers. | - | [xConnect Provider for Data Exchange Framework CD server](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/XConnect%20Provider%20for%20Data%20Exchange%20Framework%20CD%20Server%202.1.0%20rev.%20181113.zip) | xConnect provider installation package for content delivery (CD) servers. | - | [Sitecore Connect for Salesforce CRM CD server](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/Connect%20for%20Salesforce%20CD%20Server%202.1.0%20rev.%20181113.zip) | Sitecore Connect for Salesforce CRM installation package for content delivery (CD) servers. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/Data%20Exchange%20Framework%202.1.0.update) | Update package you need to upgrade from Data Exchange Framework 2.0.1 to 2.1.0. | - | [Update Package for Salesforce CRM Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/Salesforce%20Provider%20for%20Data%20Exchange%20Framework%20%202.1.0.update) | Update package you need to upgrade from Salesforce CRM Provider for Data Exchange Framework 2.0.1 to 2.1.0. | - | [Update Package for Sitecore Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%202.1.0.update) | Update package you need to upgrade from Sitecore Provider for Data Exchange Framework 2.0.1 to 2.1.0. | - | [Update Package for SQL Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/SQL%20Provider%20for%20Data%20Exchange%20Framework%202.1.0.update) | Update package you need to upgrade from SQL Provider for Data Exchange Framework 2.0.1 to 2.1.0. | - | [Update Package for xConnect Provider for Data Exchange Framework](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/xConnect%20Provider%20for%20Data%20Exchange%20Framework%202.1.0.update) | Update package you need to upgrade from xConnect Provider for Data Exchange Framework 2.0.1 to 2.1.0. | - | [Update Package for Sitecore Connect for Salesforce CRM](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/Connect%20for%20Salesforce%202.1.0.update) | Update package you need to upgrade from Sitecore Connect for Salesforce CRM 2.0.1 to 2.1.0. | - | [Data Exchange Framework SDK](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/Data%20Exchange%20Framework%20SDK%202.1.0%20rev.%20181113.zip) | Sitecore Data Exchange Framework SDK provides the tool used to install the tenant update definition file. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_210/Release_Notes) | Release notes for Sitecore Connect for Salesforce CRM. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/2x/Sitecore%20Connect%20for%20Salesforce%20CRM%20210/Secure/Sitecore_Connect_for_Salesforce_2_1_Installation_G-en.pdf) | The installation and configuration procedure for the Sitecore Connect for Salesforce CRM. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-connect/21/sitecore-connect-for-salesforce-crm/en/index-en.html) | The Sitecore documentation portal has all of the documentation for Sitecore Connect for Salesforce CRM. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/3x/Sitecore_Connect_for_Salesforce_CRM_300/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/3x/Sitecore_Connect_for_Salesforce_CRM_300/Release_Notes.md deleted file mode 100644 index bf759b4de..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/3x/Sitecore_Connect_for_Salesforce_CRM_300/Release_Notes.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/3x/Sitecore_Connect_for_Salesforce_CRM_300/Release_Notes ---- - -**September 2019, released SalesForce CRM Connect 3.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Support for Sitecore XP 9.2.0. | | | - | The installation and upgrade process has been simplified by combining 2 packages into 1 package. | | | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/3x/Sitecore_Connect_for_Salesforce_CRM_300/index.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/3x/Sitecore_Connect_for_Salesforce_CRM_300/index.md deleted file mode 100644 index ae707041c..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/3x/Sitecore_Connect_for_Salesforce_CRM_300/index.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: "Sitecore Connect for Salesforce CRM 3.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/3x/Sitecore_Connect_for_Salesforce_CRM_300.aspx ---- - -Synchronize data between Salesforce CRM and Sitecore Experience Platform. - - - - Sitecore Connect for Salesforce CRM version 3.0.0 requires Sitecore Experience Platform version 9.2. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect for Salesforce CRM](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/3x/Sitecore%20Connect%20for%20Salesforce%20CRM%20300/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%203.0.0%20rev.%2001388.zip) | Pre-configured synchronization processes and data mapping for exchanging data between Sitecore Experience Platform and Salesforce CRM. | - | [Salesforce CRM Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/3x/Sitecore%20Connect%20for%20Salesforce%20CRM%20300/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%20Plugin%20for%20Tenant%20Service%203.0.0%20rev.%2001388.scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Salesforce data on the Tenant Service or to work with Salesforce as an endpoint. | - -## CD Server Files - - | Resource | Description | - | --- | --- | - | [Sitecore Connect for Salesforce CRM CD server](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/3x/Sitecore%20Connect%20for%20Salesforce%20CRM%20300/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%20CD%20Server%203.0.0%20rev.%2001388.zip) | Sitecore Connect for Salesforce CRM installation package for content delivery (CD) servers. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Sitecore Connect for Salesforce CRM](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/3x/Sitecore%20Connect%20for%20Salesforce%20CRM%20300/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%203.0.0%20rev.%2001388%20(update%20package).update) | Update package you need to upgrade from Sitecore Connect for Salesforce CRM 2.1.0 to 3.0.0. | - | [Update Package for Sitecore Connect for Salesforce CRM CD server](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/3x/Sitecore%20Connect%20for%20Salesforce%20CRM%20300/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%20CD%20Server%203.0.0%20rev.%2001388%20(update%20package).update) | Update package you need to upgrade from Sitecore Connect for Salesforce CRM 2.1.0 to 3.0.0 for content delivery (CD) servers. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Salesforce_Connect/3x/Sitecore_Connect_for_Salesforce_CRM_300/Release_Notes) | Release notes for Sitecore Connect for Salesforce CRM. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/3x/Sitecore%20Connect%20for%20Salesforce%20CRM%20300/Secure/Sitecore_Connect_for_Salesforce_3_0_Installation_G-en.pdf) | The installation and configuration procedure for the Sitecore Connect for Salesforce CRM. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-connect/30/sitecore-connect-for-salesforce-crm/en/index-en.html) | The Sitecore documentation portal has all of the documentation for Sitecore Connect for Salesforce CRM. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/4x/Sitecore_Connect_for_Salesforce_CRM_400/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/4x/Sitecore_Connect_for_Salesforce_CRM_400/Release_Notes.md deleted file mode 100644 index 8912984c6..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/4x/Sitecore_Connect_for_Salesforce_CRM_400/Release_Notes.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/4x/Sitecore_Connect_for_Salesforce_CRM_400/Release_Notes ---- - -**January 2020, released SalesForce CRM Connect 4.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Support for Sitecore XP 9.3.0. | | | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/4x/Sitecore_Connect_for_Salesforce_CRM_400/index.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/4x/Sitecore_Connect_for_Salesforce_CRM_400/index.md deleted file mode 100644 index aedab226b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/4x/Sitecore_Connect_for_Salesforce_CRM_400/index.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: "Sitecore Connect for Salesforce CRM 4.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/4x/Sitecore_Connect_for_Salesforce_CRM_400.aspx ---- - -Synchronize data between Salesforce CRM and Sitecore Experience Platform. - - - - Sitecore Connect for Salesforce CRM version 4.0.0 requires Sitecore Experience Platform version 9.3. - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect for Salesforce CRM](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/4x/Sitecore%20Connect%20for%20Salesforce%20CRM%20400/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%204.0.0%20rev.%2001411.zip) | Pre-configured synchronization processes and data mapping for exchanging data between Sitecore Experience Platform and Salesforce CRM. | - | [Salesforce CRM Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/4x/Sitecore%20Connect%20for%20Salesforce%20CRM%20400/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%20Plugin%20for%20Tenant%20Service%204.0.0%20rev.%2001411.scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Salesforce data on the Tenant Service or to work with Salesforce as an endpoint. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Sitecore Connect for Salesforce CRM](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/4x/Sitecore%20Connect%20for%20Salesforce%20CRM%20400/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%20(update%20package)%204.0.0%20rev.%2001411.update) | Update package you need to upgrade from Sitecore Connect for Salesforce CRM 3.0.0 to 4.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Salesforce_Connect/4x/Sitecore_Connect_for_Salesforce_CRM_400/Release_Notes) | Release notes for Sitecore Connect for Salesforce CRM. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/4x/Sitecore%20Connect%20for%20Salesforce%20CRM%20400/Secure/Sitecore_Connect_for_Salesforce_CRM_4_0_Installati-en.pdf) | The installation and configuration procedure for the Sitecore Connect for Salesforce CRM. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-connect/40/sitecore-connect-for-salesforce-crm/en/sitecore-connect-for-salesforce-crm-configuration-guide.html) | The Sitecore documentation portal has all of the documentation for Sitecore Connect for Salesforce CRM. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/5x/Sitecore_Connect_for_Salesforce_CRM_500/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/5x/Sitecore_Connect_for_Salesforce_CRM_500/Release_Notes.md deleted file mode 100644 index b64f42763..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/5x/Sitecore_Connect_for_Salesforce_CRM_500/Release_Notes.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/5x/Sitecore_Connect_for_Salesforce_CRM_500/Release_Notes ---- - -**August 2020, released SalesForce CRM Connect 5.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Support for Sitecore XP 10.0.0. | | | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/5x/Sitecore_Connect_for_Salesforce_CRM_500/index.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/5x/Sitecore_Connect_for_Salesforce_CRM_500/index.md deleted file mode 100644 index eac87cd2c..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/5x/Sitecore_Connect_for_Salesforce_CRM_500/index.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: "Sitecore Connect for Salesforce CRM 5.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/5x/Sitecore_Connect_for_Salesforce_CRM_500 ---- - -Synchronize data between Salesforce CRM and Sitecore Experience Platform.\ -Sitecore Connect™ for Salesforce CRM version 5.0.0 is compatible with Sitecore XP 10.0. - -See [all available versions here](/downloads/Salesforce_Connect). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect for Salesforce CRM](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/5x/Sitecore%20Connect%20for%20Salesforce%20CRM%20500/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%205.0.0%20rev.%2001431.zip) | Pre-configured synchronization processes and data mapping for exchanging data between Sitecore Experience Platform and Salesforce CRM. | - | [Salesforce CRM Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/5x/Sitecore%20Connect%20for%20Salesforce%20CRM%20500/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%20Plugin%20for%20Tenant%20Service%205.0.0%20rev.%2001431.scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Salesforce data on the Tenant Service or to work with Salesforce as an endpoint. | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Sitecore Connect for Salesforce CRM](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/5x/Sitecore%20Connect%20for%20Salesforce%20CRM%20500/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%20(update%20package)%205.0.0%20rev.%2001431.update) | Update package you need to upgrade from Sitecore Connect for Salesforce CRM 4.0.0 to 5.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Salesforce_Connect/5x/Sitecore_Connect_for_Salesforce_CRM_500/Release_Notes) | Release notes for Sitecore Connect for Salesforce CRM. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/5x/Sitecore%20Connect%20for%20Salesforce%20CRM%20500/Secure/Sitecore_Connect_for_Salesforce_CRM_5_0_Installation_Guide-en.pdf) | The installation and configuration procedure for the Sitecore Connect for Salesforce CRM. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-connect/50/sitecore-connect-for-salesforce-crm/en/sitecore-connect-for-salesforce-crm-configuration-guide.html) | The Sitecore documentation portal has all of the documentation for Sitecore Connect for Salesforce CRM. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/6x/Sitecore_Connect_for_Salesforce_CRM_600/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/6x/Sitecore_Connect_for_Salesforce_CRM_600/Release_Notes.md deleted file mode 100644 index ff6c1970a..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/6x/Sitecore_Connect_for_Salesforce_CRM_600/Release_Notes.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/6x/Sitecore_Connect_for_Salesforce_CRM_600/Release_Notes ---- - -**April 2021, released Sitecore Connect for Salesforce CRM 6.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | AD no. | - | --- | --- | --- | - | Support for Sitecore XP 10.1.0. | | | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | AD no. | - | --- | --- | --- | - | Sitecore Connect for Salesforce CRM does not synchronize values that have been deleted in Salesforce CRM. | CS0195659 | 441899 | - | In Sitecore Connect for Salesforce CRM, filter expression that contain multiple conditions under do not work correctly. | CS0198149, CS0199565, CS0200300 | 449546 | - | If `Has Facet Expression` is used in a filter expression, contacts are not synchronized. | CS0199224 | 450581 | - | If `Facet Property String Value Expression` is used in a filter expression, contacts are not synchronized. | CS0199224 | 450736 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/6x/Sitecore_Connect_for_Salesforce_CRM_600/index.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/6x/Sitecore_Connect_for_Salesforce_CRM_600/index.md deleted file mode 100644 index dd008e940..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/6x/Sitecore_Connect_for_Salesforce_CRM_600/index.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: "Sitecore Connect™ for Salesforce CRM 6.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/6x/Sitecore_Connect_for_Salesforce_CRM_600 ---- - -Synchronize data between Salesforce CRM and Sitecore Experience Platform.\ -Sitecore Connect™ for Salesforce CRM version 6.0.0 is compatible with Sitecore XP 10.1. - -See [all available versions here](/downloads/Salesforce_Connect). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ for Salesforce CRM](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/6x/Sitecore%20Connect%20for%20Salesforce%20CRM%20600/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%206.0.0%20rev.%2001456.zip) | Pre-configured synchronization processes and data mapping for exchanging data between Sitecore Experience Platform and Salesforce CRM. | - | [Salesforce CRM Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/6x/Sitecore%20Connect%20for%20Salesforce%20CRM%20600/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%20Plugin%20for%20Tenant%20Service%206.0.0%20rev.%2001456.scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Salesforce data on the Tenant Service or to work with Salesforce as an endpoint. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sfcrm%2F6.0.0.01456.108) | The Salesforce CRM Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Salesforce CRM in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update Package for Sitecore Connect™ for Salesforce CRM](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/6x/Sitecore%20Connect%20for%20Salesforce%20CRM%20600/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%20(update%20package)%206.0.0%20rev.%2001456.update) | Update package you need to upgrade from Sitecore Connect™ for Salesforce CRM 5.0.0 to 6.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Salesforce_Connect/6x/Sitecore_Connect_for_Salesforce_CRM_600/Release_Notes) | Release notes for Sitecore Connect™ for Salesforce CRM. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/6x/Sitecore%20Connect%20for%20Salesforce%20CRM%20600/Secure/Sitecore_Connect_for_Salesforce_CRM_6_0_Installation_Guide-en.pdf) | The installation and configuration procedure for Sitecore Connect™ for Salesforce CRM. | - | [Container Deployment Guide](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/6x/Sitecore%20Connect%20for%20Salesforce%20CRM%20600/Secure/Sitecore_Connect_for_Salesforce_CRM_6_0_Container_Deployment_Guide-en.pdf) | The installation and configuration procedure for Sitecore Connect™ for Salesforce CRM for Docker/Kubernetes. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-connect/60/sitecore-connect-for-salesforce-crm/en/sitecore-connect-for-salesforce-crm-configuration-guide.html) | The Sitecore documentation portal has all of the documentation for Sitecore Connect™ for Salesforce CRM. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/7x/Sitecore_Connect_for_Salesforce_CRM_700/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/7x/Sitecore_Connect_for_Salesforce_CRM_700/Release_Notes.md deleted file mode 100644 index 64530aba8..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/7x/Sitecore_Connect_for_Salesforce_CRM_700/Release_Notes.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/7x/Sitecore_Connect_for_Salesforce_CRM_700/Release_Notes ---- - -**December 2021, released Sitecore Connect for Salesforce CRM 7.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | AD no. | - | --- | --- | --- | - | Support for Sitecore XP 10.2.0. | | | - | Support for Items as Resources. | | | - | Support for Consumption Tracking. | | 455698 | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | AD no. | - | --- | --- | --- | - | The synchronization process between Salesforce and xConnect never ends when you have more than 1000 contacts in Salesforce. | CS0209999, CS0210259, CS0211757, CS0212277 | 476934 | - | If the Relative Date Condition filter expression contains multiple conditions, it doesn't work on Salesforce CRM Connect. | CS0213665 | 479902 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/7x/Sitecore_Connect_for_Salesforce_CRM_700/index.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/7x/Sitecore_Connect_for_Salesforce_CRM_700/index.md deleted file mode 100644 index d69c70db0..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/7x/Sitecore_Connect_for_Salesforce_CRM_700/index.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: "Sitecore Connect™ for Salesforce CRM 7.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/7x/Sitecore_Connect_for_Salesforce_CRM_700 ---- - -Synchronize data between Salesforce CRM and Sitecore Experience Platform.\ -Sitecore Connect™ for Salesforce CRM version 7.0.0 is compatible with Sitecore XP 10.2. - -See [all available versions here](/downloads/Salesforce_Connect). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ for Salesforce CRM](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/7x/Sitecore%20Connect%20for%20Salesforce%20CRM%20700/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%207.0.0%20rev.%2001480.zip) | Pre-configured synchronization processes and data mapping for exchanging data between Sitecore Experience Platform and Salesforce CRM. | - | [Salesforce CRM Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/7x/Sitecore%20Connect%20for%20Salesforce%20CRM%20700/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%20Plugin%20for%20Tenant%20Service%207.0.0%20rev.%2001480.scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Salesforce data on the Tenant Service or to work with Salesforce as an endpoint. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sfcrm%2F7.0.0.01480.302) | The Salesforce CRM Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Salesforce CRM in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update resources for Sitecore Connect™ for Salesforce CRM](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Update resources you need to upgrade from Sitecore Connect™ for Salesforce CRM 2.0.0 to 7.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Salesforce_Connect/7x/Sitecore_Connect_for_Salesforce_CRM_700/Release_Notes) | Release notes for Sitecore Connect™ for Salesforce CRM. | - | [Installation Guide](https://doc.sitecore.com/xp/en/developers/salesforce-connect/70/sitecore-connect-for-salesforce-crm/install-sitecore-connect-for-salesforce-crm-on-prem.html) | The installation and configuration procedure for Sitecore Connect™ for Salesforce CRM. | - | [Container Deployment Guide](https://doc.sitecore.com/xp/en/developers/salesforce-connect/70/sitecore-connect-for-salesforce-crm/install-sitecore-connect-for-salesforce-crm-on-containers.html) | The installation and configuration procedure for Sitecore Connect™ for Salesforce CRM for Docker/Kubernetes. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-connect/70/sitecore-connect-for-salesforce-crm/en/sitecore-connect-for-salesforce-crm-configuration-guide.html) | The Sitecore documentation portal has all of the documentation for Sitecore Connect™ for Salesforce CRM. | - -## Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/7x/Sitecore%20Connect%20for%20Salesforce%20CRM%20700/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%207.0.0%20rev.%2001480%20(da-DK).zip) | Sitecore Connect™ for Salesforce CRM Client Translations file Danish (da-DK). | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/7x/Sitecore%20Connect%20for%20Salesforce%20CRM%20700/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%207.0.0%20rev.%2001480%20(de-DE).zip) | Sitecore Connect™ for Salesforce CRM Client Translations file German (de-DE). | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/7x/Sitecore%20Connect%20for%20Salesforce%20CRM%20700/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%207.0.0%20rev.%2001480%20(ja-JP).zip) | Sitecore Connect™ for Salesforce CRM Client Translations file Japanese (ja-JP). | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/7x/Sitecore%20Connect%20for%20Salesforce%20CRM%20700/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%207.0.0%20rev.%2001480%20(zh-CN).zip) | Sitecore Connect™ for Salesforce CRM Client Translations file Chinese (zh-CN). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/8x/Sitecore_Connect_for_Salesforce_CRM_800/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/8x/Sitecore_Connect_for_Salesforce_CRM_800/Release_Notes.md deleted file mode 100644 index bdb232dcd..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/8x/Sitecore_Connect_for_Salesforce_CRM_800/Release_Notes.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/8x/Sitecore_Connect_for_Salesforce_CRM_800/Release_Notes ---- - -**January 2023, released Sitecore Connect for Salesforce CRM 8.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | AD no. | - | --- | --- | --- | - | Support for Sitecore XP 10.3.0. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/8x/Sitecore_Connect_for_Salesforce_CRM_800/index.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/8x/Sitecore_Connect_for_Salesforce_CRM_800/index.md deleted file mode 100644 index 77a7a014e..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/8x/Sitecore_Connect_for_Salesforce_CRM_800/index.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: "Sitecore Connect™ for Salesforce CRM 8.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/8x/Sitecore_Connect_for_Salesforce_CRM_800 ---- - -Synchronize data between Salesforce CRM and Sitecore Experience Platform.\ -Sitecore Connect™ for Salesforce CRM version 8.0.0 is compatible with Sitecore XP 10.3. - -See [all available versions here](/downloads/Salesforce_Connect). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ for Salesforce CRM](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/8x/Sitecore%20Connect%20for%20Salesforce%20CRM%20800/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%208.0.1498%20rev.%2001498.zip) | Pre-configured synchronization processes and data mapping for exchanging data between Sitecore Experience Platform and Salesforce CRM. | - | [Salesforce CRM Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/8x/Sitecore%20Connect%20for%20Salesforce%20CRM%20800/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%20Plugin%20for%20Tenant%20Service%208.0.1498%20rev.%2001498.scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Salesforce data on the Tenant Service or to work with Salesforce as an endpoint. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sfcrm%2F8.0.1498.01498.363) | The Salesforce CRM Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Salesforce CRM in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update resources for Sitecore Connect™ for Salesforce CRM](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Update resources you need to upgrade from Sitecore Connect™ for Salesforce CRM 2.0.0 to 8.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Salesforce_Connect/8x/Sitecore_Connect_for_Salesforce_CRM_800/Release_Notes) | Release notes for Sitecore Connect™ for Salesforce CRM. | - | [Installation Guide](https://doc.sitecore.com/xp/en/developers/salesforce-connect/80/sitecore-connect-for-salesforce-crm/install-sitecore-connect-for-salesforce-crm-on-prem.html) | The installation and configuration procedure for Sitecore Connect™ for Salesforce CRM. | - | [Container Deployment Guide](https://doc.sitecore.com/xp/en/developers/salesforce-connect/80/sitecore-connect-for-salesforce-crm/install-sitecore-connect-for-salesforce-crm-on-containers.html) | The installation and configuration procedure for Sitecore Connect™ for Salesforce CRM for Docker/Kubernetes. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-connect/80/sitecore-connect-for-salesforce-crm/en/sitecore-connect-for-salesforce-crm-configuration-guide.html) | The Sitecore documentation portal has all of the documentation for Sitecore Connect™ for Salesforce CRM. | - -## Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/8x/Sitecore%20Connect%20for%20Salesforce%20CRM%20800/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%208.0.1498%20rev.%2001498%20(da-DK).zip) | Sitecore Connect™ for Salesforce CRM Client Translations file Danish (da-DK). | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/8x/Sitecore%20Connect%20for%20Salesforce%20CRM%20800/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%208.0.1498%20rev.%2001498%20(de-DE).zip) | Sitecore Connect™ for Salesforce CRM Client Translations file German (de-DE). | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/8x/Sitecore%20Connect%20for%20Salesforce%20CRM%20800/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%208.0.1498%20rev.%2001498%20(ja-JP).zip) | Sitecore Connect™ for Salesforce CRM Client Translations file Japanese (ja-JP). | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/8x/Sitecore%20Connect%20for%20Salesforce%20CRM%20800/Secure/Sitecore%20Connect%20for%20Salesforce%20CRM%208.0.1498%20rev.%2001498%20(zh-CN).zip) | Sitecore Connect™ for Salesforce CRM Client Translations file Chinese (zh-CN). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/9x/Sitecore_Connect_for_Salesforce_CRM_900/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/9x/Sitecore_Connect_for_Salesforce_CRM_900/Release_Notes.md deleted file mode 100644 index eeeed1860..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/9x/Sitecore_Connect_for_Salesforce_CRM_900/Release_Notes.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -title: "Release Notes" -description: "" ---- - -**May 2024, released Sitecore Connect for Salesforce CRM 9.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | AD no. | - | --- | --- | - | Added compatibility with Sitecore XP 10.4.0. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/9x/Sitecore_Connect_for_Salesforce_CRM_900/index.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/9x/Sitecore_Connect_for_Salesforce_CRM_900/index.md deleted file mode 100644 index ea23ab948..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/9x/Sitecore_Connect_for_Salesforce_CRM_900/index.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: "Sitecore Connect™ for Salesforce CRM 9.0.0" -description: "" ---- - -Synchronize data between Salesforce CRM and Sitecore Experience Platform.\ -Sitecore Connect™ for Salesforce CRM version 9.0.0 is compatible with Sitecore XP 10.4.\ -See [all available versions here](/downloads/Salesforce_Connect). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ for Salesforce CRM](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/9x/Sitecore%20Connect%20for%20Salesforce%20CRM%20900/Sitecore%20Connect%20for%20Salesforce%20CRM%209.0.2%20rev.%2001502.zip) | Pre-configured synchronization processes and data mapping for exchanging data between Sitecore Experience Platform and Salesforce CRM. | - | [Salesforce CRM Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/9x/Sitecore%20Connect%20for%20Salesforce%20CRM%20900/Sitecore%20Connect%20for%20Salesforce%20CRM%20Plugin%20for%20Tenant%20Service%209.0.2%20rev.%2001502.scwdp.zip) | Provides an ability to run the Data Exchange Framework pipelines that manage Salesforce data on the Tenant Service or to work with Salesforce as an endpoint. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sfcrm%2F9.0.1502.01502.373) | The Salesforce CRM Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Salesforce CRM in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update resources for Sitecore Connect™ for Salesforce CRM](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Update resources you need to upgrade from Sitecore Connect™ for Salesforce CRM 2.0.0 to 9.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Salesforce_Connect/9x/Sitecore_Connect_for_Salesforce_CRM_900/Release_Notes) | Release notes for Sitecore Connect™ for Salesforce CRM. | - | [Installation Guide](https://doc.sitecore.com/xp/en/developers/salesforce-connect/80/sitecore-connect-for-salesforce-crm/install-sitecore-connect-for-salesforce-crm-on-prem.html) | **Updated document for 9.0 is to be completed!** The installation and configuration procedure for Sitecore Connect™ for Salesforce CRM. | - | [Container Deployment Guide](https://doc.sitecore.com/xp/en/developers/salesforce-connect/80/sitecore-connect-for-salesforce-crm/install-sitecore-connect-for-salesforce-crm-on-containers.html) | **Updated document for 9.0 is to be completed!** The installation and configuration procedure for Sitecore Connect™ for Salesforce CRM for Docker/Kubernetes. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-connect/80/sitecore-connect-for-salesforce-crm/en/sitecore-connect-for-salesforce-crm-configuration-guide.html) | **Updated document for 9.0 is to be completed!** Link to Sitecore Documentation containing documentation for Sitecore Connect™ for Salesforce CRM. | - -## Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/9x/Sitecore%20Connect%20for%20Salesforce%20CRM%20900/Sitecore%20Connect%20for%20Salesforce%20CRM%209.0.2%20rev.%2001502%20(da-DK).zip) | Sitecore Connect™ for Salesforce CRM Client Translations file Danish (da-DK). | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/9x/Sitecore%20Connect%20for%20Salesforce%20CRM%20900/Sitecore%20Connect%20for%20Salesforce%20CRM%209.0.2%20rev.%2001502%20(de-DE).zip) | Sitecore Connect™ for Salesforce CRM Client Translations file German (de-DE). | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/9x/Sitecore%20Connect%20for%20Salesforce%20CRM%20900/Sitecore%20Connect%20for%20Salesforce%20CRM%209.0.2%20rev.%2001502%20(ja-JP).zip) | Sitecore Connect™ for Salesforce CRM Client Translations file Japanese (ja-JP). | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/9x/Sitecore%20Connect%20for%20Salesforce%20CRM%20900/Sitecore%20Connect%20for%20Salesforce%20CRM%209.0.2%20rev.%2001502%20(zh-CN).zip) | Sitecore Connect™ for Salesforce CRM Client Translations file Chinese (zh-CN). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/Salesforce_Connect_1/Salesforce_Connect_1_4_1/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/Salesforce_Connect_1/Salesforce_Connect_1_4_1/Release_Notes.md deleted file mode 100644 index 665794982..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/Salesforce_Connect_1/Salesforce_Connect_1_4_1/Release_Notes.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/Salesforce_Connect_1/Salesforce_Connect_1_4_1/Release_Notes ---- - -**August 2017 – released Salesforce Connect 1.4.1 (rev. 170818)** - -This is the first release of a new product. - -## Highlights - -- Represent contacts from Salesforce as contacts in Sitecore Experience Database (xDB) -- Track visitor activity using campaigns from Salesforce -- Personalize web pages using membership in a campaign from Salesforce -- Create contact lists for Sitecore Email Experience Manager (EXM) using membership in a campaign from Salesforce as a condition for inclusion in the contact list -- Bi-directional data synchronization between Salesforce and Sitecore - -## Documentation - -- Documentation links are available on the [Downloads](/downloads/Salesforce_Connect/Salesforce_Connect_1/Salesforce_Connect_1_4_1) page - -## System requirements - -- Sitecore Experience Platform 8.1 rev. 151207 (8.1 update-1) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/Salesforce_Connect_1/Salesforce_Connect_1_4_1/index.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/Salesforce_Connect_1/Salesforce_Connect_1_4_1/index.md deleted file mode 100644 index e87df252f..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/Salesforce_Connect_1/Salesforce_Connect_1_4_1/index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Salesforce Connect 1.4.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect/Salesforce_Connect_1/Salesforce_Connect_1_4_1.aspx ---- - -Integrate data from Salesforce with Sitecore, and data from Sitecore with Salesforce. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Data Exchange Framework 1.4.1](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/Salesforce%20Connect%201/Salesforce%20Connect%201%204%201/Secure/Data%20Exchange%20Framework%201.4.1%20rev.%20170818.zip) | Data Exchange Framework is the foundation for Salesforce Connect.It provides the ability to define the synchronization processes and data mappings that allow data from Salesforce to be exposed in Sitecore, and data from Sitecore to be exposed in Salesforce. | - | [Sitecore Provider for Data Exchange Framework 1.4.1](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/Salesforce%20Connect%201/Salesforce%20Connect%201%204%201/Secure/Sitecore%20Provider%20for%20Data%20Exchange%20Framework%201.4.1%20rev.%20170818.zip) | Provides the ability for Data Exchange Framework to interact with Sitecore items, marketing taxonomies and xDB. | - | [Salesforce Provider for Data Exchange Framework 1.4.1](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/Salesforce%20Connect%201/Salesforce%20Connect%201%204%201/Secure/Salesforce%20Provider%20for%20Data%20Exchange%20Framework%201.4.1%20rev.%20170818.zip) | Provides the ability for Data Exchange Framework to interact with Salesforce objects such as contacts and campaigns. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Salesforce_Connect/Salesforce_Connect_1/Salesforce_Connect_1_4_1/Release_Notes) | Release notes for Salesforce Connect. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Salesforce%20Connect/Salesforce%20Connect%201/Salesforce%20Connect%201%204%201/Secure/Installation%20Guide%20Salesforce%20Connect%20141a4.pdf) | The installation and configuration procedure for the Sitecore Connect for Salesforce CRM. | - | [Documentation](https://doc.sitecore.com/developers/82/connectors/) | The Sitecore documentation website with all the Salesforce Connect documentation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/index.md b/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/index.md deleted file mode 100644 index fbc80d960..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Salesforce_Connect/index.md +++ /dev/null @@ -1,88 +0,0 @@ ---- -title: "Sitecore Connect™ for Salesforce CRM " -description: "Connector for synchronizing data between Sitecore Experience Platform and Salesforce CRM." -origin: https://dev.sitecore.net/Downloads/Salesforce_Connect.aspx ---- - - - -## Sitecore Connect™ for Salesforce CRM 9.x - - -[Sitecore Connect™ for Salesforce CRM 9.0.0](/downloads/Salesforce_Connect/9x/Sitecore_Connect_for_Salesforce_CRM_900) - - - - - -## Sitecore Connect™ for Salesforce CRM 8.x - - -[Sitecore Connect™ for Salesforce CRM 8.0.0](/downloads/Salesforce_Connect/8x/Sitecore_Connect_for_Salesforce_CRM_800) - - - - - -## Sitecore Connect™ for Salesforce CRM 7.x - - -[Sitecore Connect™ for Salesforce CRM 7.0.0](/downloads/Salesforce_Connect/7x/Sitecore_Connect_for_Salesforce_CRM_700) - - - - - -## Sitecore Connect™ for Salesforce CRM 6.x - - -[Sitecore Connect™ for Salesforce CRM 6.0.0](/downloads/Salesforce_Connect/6x/Sitecore_Connect_for_Salesforce_CRM_600) - - - - - -## Sitecore Connect™ for Salesforce CRM 5.x - - -[Sitecore Connect™ for Salesforce CRM 5.0.0](/downloads/Salesforce_Connect/5x/Sitecore_Connect_for_Salesforce_CRM_500) - - - - - -## Sitecore Connect™ for Salesforce CRM 4.x - - -[Sitecore Connect™ for Salesforce CRM 4.0.0](/downloads/Salesforce_Connect/4x/Sitecore_Connect_for_Salesforce_CRM_400) - - - - - -## Sitecore Connect™ for Salesforce CRM 3.x - - -[Sitecore Connect™ for Salesforce CRM 3.0.0](/downloads/Salesforce_Connect/3x/Sitecore_Connect_for_Salesforce_CRM_300) - - - - - -## Sitecore Connect™ for Salesforce CRM 2.x - - -[Sitecore Connect™ for Salesforce CRM 2.1.0](/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_210)\ -[Sitecore Connect™ for Salesforce CRM 2.0.1](/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_201)\ -[Sitecore Connect™ for Salesforce CRM 2.0](/downloads/Salesforce_Connect/2x/Sitecore_Connect_for_Salesforce_CRM_20) - - - - - -## Salesforce Connect 1.x - - -[Salesforce Connect 1.4.1](/downloads/Salesforce_Connect/Salesforce_Connect_1/Salesforce_Connect_1_4_1) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_02/index.md b/apps/devportal/data/markdown/pages/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_02/index.md deleted file mode 100644 index 0c5d4352c..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_02/index.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: "Scripts for Sitecore Security database 0.2" -description: "" ---- - -Scripts for Sitecore Security Database contains the set of scripts for moving the Sitecore Security membership provider from the Core database to an individual or existing database.\ -Scripts for Sitecore Security Database 0.2 is compatible with Sitecore XP 9.1-9.3, and Sitecore Identity Server 2.0-4.0. - -See [all available versions here](/downloads/Scripts_for_Sitecore_Security_database). - - - - For security reasons we strongly recommend using [Sitecore Identity 6.0](/downloads/Sitecore_Identity).\ - Please use [Scripts for Sitecore Security database 0.4](/downloads/Scripts_for_Sitecore_Security_database) with [Sitecore Identity 6.0](/downloads/Sitecore_Identity) and any version of [Sitecore XP](/downloads/Sitecore_Experience_Platform). - - -## Download options - - | Resource | Description | - | --- | --- | - | [Scripts for Sitecore Security database](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Divide%20Core%20db%20into%20core+security%20v0.2.zip) | The set of scripts for moving Sitecore Security membership provider from the Core database to individual or existing one. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_031/index.md b/apps/devportal/data/markdown/pages/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_031/index.md deleted file mode 100644 index cf35c0e1d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_031/index.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: "Scripts for Sitecore Security database 0.3.1" -description: "" ---- - -Scripts for Sitecore Security Database contains the set of scripts for moving the Sitecore Security membership provider from the Core database to an individual or existing database.\ -Scripts for Sitecore Security Database 0.3.1 is compatible with Sitecore XP 10.0-10.1, and Sitecore Identity Server 5.0-5.1. - -See [all available versions here](/downloads/Scripts_for_Sitecore_Security_database). - - - - For security reasons we strongly recommend using [Sitecore Identity 6.0](/downloads/Sitecore_Identity).\ - Please use [Scripts for Sitecore Security database 0.4](/downloads/Scripts_for_Sitecore_Security_database) with [Sitecore Identity 6.0](/downloads/Sitecore_Identity) and any version of [Sitecore XP](/downloads/Sitecore_Experience_Platform). - - -## Download options - - | Resource | Description | - | --- | --- | - | [Scripts for Sitecore Security database](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Divide%20Core%20db%20into%20core%20security%20v0.3.1.zip) | The set of scripts for moving Sitecore Security membership provider from the Core database to individual or existing one. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_04/index.md b/apps/devportal/data/markdown/pages/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_04/index.md deleted file mode 100644 index 1a1a92a43..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_04/index.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Scripts for Sitecore Security database 0.4" -description: "" ---- - -Scripts for Sitecore Security Database contains the set of scripts for moving the Sitecore Security membership provider from the Core database to an individual or existing database.\ -Scripts for Sitecore Security Database 0.4 is compatible with Sitecore XP 9.1 and later, and Sitecore Identity Server 6.0. - -See [all available versions here](/downloads/Scripts_for_Sitecore_Security_database). - -## Download options - - | Resource | Description | - | --- | --- | - | [Scripts for Sitecore Security database](https://scdp.blob.core.windows.net/downloads/Scripts%20for%20Sitecore%20Security%20database/0x/Scripts%20for%20Sitecore%20Security%20database%2004/Secure/Divide%20Core%20db%20into%20core%20security%20v0.4.zip) | The set of scripts for moving Sitecore Security membership provider from the Core database to individual or existing one. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_05/index.md b/apps/devportal/data/markdown/pages/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_05/index.md deleted file mode 100644 index 8e91c6762..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_05/index.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Scripts for Sitecore Security database 0.5" -description: "" ---- - -Scripts for Sitecore Security Database contains the set of scripts for moving the Sitecore Security membership provider from the Core database to an individual or existing database.\ -Scripts for Sitecore Security Database 0.5 is compatible with Sitecore XP 9.1 and later, and Sitecore Identity Server 7.0. - -See [all available versions here](/downloads/Scripts_for_Sitecore_Security_database). - -## Download options - - | Resource | Description | - | --- | --- | - | [Scripts for Sitecore Security database](https://scdp.blob.core.windows.net/downloads/Scripts%20for%20Sitecore%20Security%20database/0x/Scripts%20for%20Sitecore%20Security%20database%2005/Secure/Divide%20Core%20db%20into%20core%20security%20v0.5.zip) | The set of scripts for moving Sitecore Security membership provider from the Core database to individual or existing one. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_06/index.md b/apps/devportal/data/markdown/pages/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_06/index.md deleted file mode 100644 index b13ce845b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_06/index.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Scripts for Sitecore Security database 0.6" -description: "" ---- - -Scripts for Sitecore Security Database contains the set of scripts for moving the Sitecore Security membership provider from the Core database to an individual or existing database.\ -Scripts for Sitecore Security Database 0.6 is compatible with Sitecore XP 9.1 and later, and Sitecore Identity Server 7.1. - -See [all available versions here](/downloads/Scripts_for_Sitecore_Security_database). - -## Download options - - | Resource | Description | - | --- | --- | - | [Scripts for Sitecore Security database](https://scdp.blob.core.windows.net/downloads/Scripts%20for%20Sitecore%20Security%20database/0x/Scripts%20for%20Sitecore%20Security%20database%2006/Divide%20Core%20db%20into%20core%20security%20v0.6.zip) | Scripts for moving the Sitecore Security membership provider from the Core database to an individual or existing one. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Scripts_for_Sitecore_Security_database/index.md b/apps/devportal/data/markdown/pages/downloads/Scripts_for_Sitecore_Security_database/index.md deleted file mode 100644 index 39f8918b9..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Scripts_for_Sitecore_Security_database/index.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: "Scripts for Sitecore Security database" -description: "The set of scripts for moving the Sitecore Security membership provider from the Core to an individual or existing database. For security reasons use Sitecore Identity 7.0 or later." -origin: https://dev.sitecore.net/Downloads/Scripts_for_Sitecore_Security_database ---- - - - -## Scripts for Sitecore Security database 0.x - - -[Scripts for Sitecore Security database 0.6](/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_06)\ -This release is compatible with Sitecore XP 9.1+ and Sitecore Identity 7.1. - -[Scripts for Sitecore Security database 0.5](/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_05)\ -This release is compatible with Sitecore XP 9.1+ and Sitecore Identity 7.0. - -[Scripts for Sitecore Security database 0.4](/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_04)\ -This release is compatible with Sitecore XP 9.1+ and Sitecore Identity 6.0. - -[Scripts for Sitecore Security database 0.3.1](/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_031)\ -This release is compatible with Sitecore XP 10.0-10.1 and Sitecore Identity 5.0-5.1. - -[Scripts for Sitecore Security database 0.2](/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_02)\ -This release is compatible with Sitecore XP 9.1-9.3 and Sitecore Identity 2.0-4.0. - - - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_23/Installation_Guide.md b/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_23/Installation_Guide.md deleted file mode 100644 index a30ba7a78..000000000 --- a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_23/Installation_Guide.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: "Installation Guide" -description: "" -origin: https://dev.sitecore.net/Downloads/SharePoint_Connect/2_0/SharePoint_Connect_23/Installation_Guide ---- - -## Prerequisites - -- Sitecore XP 8.2 or later -- .NET Framework 4.5 -- SharePoint 2013 client-side object model (CSOM) DLLs (These can be downloaded from the [Microsoft website](https://www.microsoft.com/en-us/download/details?id=35585&751be11f-ede8-5a0c-058c-2ee190a24fa6=True&e6b34bbe-475b-1abd-2c51-b5034bcdd6d2=True)) - -## Installing SharePoint Connect - -SharePoint Connect is distributed as a Sitecore package. To install it, use the Installation Wizard, which is available by selecting the following: - -- Sitecore Desktop: Sitecore » Development Tools » Installation Wizard -- Sitecore Control Panel: Administration » Install a Package \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_23/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_23/Release_Notes.md deleted file mode 100644 index 79c8f6193..000000000 --- a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_23/Release_Notes.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/SharePoint_Connect/2_0/SharePoint_Connect_23/Release_Notes ---- - -The SharePoint Connect module 2.3 rev. 160901 is released. Tested with Sitecore XP 8.2. - -## Compatibility - -This version of the module runs on Sitecore XP 8.2 with SharePoint Server 2010, SharePoint Foundation 2010, SharePoint Server 2013, SharePoint Foundation 2013, SharePoint Online. - -## Change log - -New features: - -- SharePoint Connect now supports Sitecore XP 8.2 \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_23/Upgrade_Guide.md b/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_23/Upgrade_Guide.md deleted file mode 100644 index 19299f75f..000000000 --- a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_23/Upgrade_Guide.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Upgrade Guide" -description: "" -origin: https://dev.sitecore.net/Downloads/SharePoint_Connect/2_0/SharePoint_Connect_23/Upgrade_Guide ---- - -To upgrade the SharePoint Integration Framework from version 2.2 rev. 160617 to SharePoint Connect version 2.3 rev. 160901: - -- Upgrade Sitecore to XP 8.2 -- Install SharePoint Connect 2.3 upgrade package - -To install it, use the Installation Wizard, which is available by selecting the following: - -- Sitecore Desktop: Sitecore » Development Tools » Installation Wizard -- Sitecore Control Panel: Administration » Install a Package \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_23/index.md b/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_23/index.md deleted file mode 100644 index 574b0ad39..000000000 --- a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_23/index.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: 'SharePoint Connect 2.3' -description: '' -origin: https://dev.sitecore.net/Downloads/SharePoint_Connect/2_0/SharePoint_Connect_23.aspx ---- - -SharePoint Connect provides a flexible framework for creating synergy between your SharePoint assets and your Sitecore content delivery engine. You can use the framework to integrate your Sitecore solution with SharePoint in many different ways - out of the box. It also provides an extensible framework that you can use to customize your solution to meet your specific needs, while keeping the look and feel of your Sitecore site and following Sitecore's best practices. - -SharePoint Connect offers page-level, item-level, and API-level integration. It can be used with Sitecore XP and gives you the tools to harness the advantages of SharePoint's document management features within Sitecore. - - - - SharePoint Connect was formerly known as the **SharePoint Integration Framework**. Older versions of this module [can be found on the Sitecore Developer Network (SDN)](http://sdn.sitecore.net/Products/SPIF). - - - - - SharePoint Connect is not supported on Sitecore 9 (and greater). We have released the [source code on GitHub](https://github.com/Sitecore/SharePoint-Connect) so you can modify it as needed if you need to use the connector with Sitecore 9. - - - -## Downloads - -| Resource | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| [SharePoint Connect 2.3 rev. 160901](https://scdp.blob.core.windows.net/downloads/SharePoint%20Connect/2%200/SharePoint%20Connect%2023/Secure/SharePoint%20Integration%20Framework%202.3%20rev.%20160901.zip) | SharePoint Connect 2.3 rev. 160901 package. Refer to the **SharePoint Connect Developers Cookbook** for the configuration instructions and review the **release notes** before installing. | - -## Release Information - -| Resource | Description | -| -------------------------------------------------------------------------------------- | ---------------------------------------------------- | -| [Release Notes](/downloads/SharePoint_Connect/2_0/SharePoint_Connect_23/Release_Notes) | Release Notes for SharePoint Connect 2.3 rev.160901. | - -## Upgrading - -| Resource | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | -| [Upgrade Guide](/downloads/SharePoint_Connect/2_0/SharePoint_Connect_23/Upgrade_Guide) | Upgrading from **2.2 rev. 160617** to **version 2.3 rev. 160901**. | -| [Upgrade Package](https://scdp.blob.core.windows.net/downloads/SharePoint%20Connect/2%200/SharePoint%20Connect%2023/Secure/SharePoint%20Integration%20Framework%202.3%20rev.%20160901%20Upgrade.zip) | Package for upgrading SharePoint Integration Framework from version 2.2 rev. 160617 to SharePoint Connect version 2.3 rev. 160901. | - -## Documentation - -| Resource | Description | -| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | -| [Installation Guide](/downloads/SharePoint_Connect/2_0/SharePoint_Connect_23/Installation_Guide) | The installation procedure for SharePoint Connect 2.3 rev. 160901. | -| [SharePoint Connect Developers Cookbook A4](https://scdp.blob.core.windows.net/downloads/SharePoint%20Connect/2%200/SharePoint%20Connect%202%201/Non-secure/SharePoint_Connect_Developers_Cookbook_21-A4.pdf) | This cookbook is for Sitecore partners and developers, and includes useful tips as well as examples (A4). | -| [SharePoint Connect Developers Cookbook US-Letter](https://scdp.blob.core.windows.net/downloads/SharePoint%20Connect/2%200/SharePoint%20Connect%202%201/Non-secure/SharePoint_Connect_Developers_Cookbook_21-USLetter.pdf) | This cookbook is for Sitecore partners and developers, and includes useful tips as well as examples (US-Letter). | diff --git a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1/Installation_Guide.md b/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1/Installation_Guide.md deleted file mode 100644 index 4ed51e15d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1/Installation_Guide.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: "Installation Guide" -description: "" -origin: https://dev.sitecore.net/Downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1/Installation_Guide ---- - -## Prerequisites - -- Sitecore XP 8.0 or later -- .NET Framework 4.5 -- SharePoint 2013 client-side object model (CSOM) DLLs (These can be downloaded from the Microsoft website) - -## Installing SharePoint Connect - -SharePoint Connect is distributed as a Sitecore package. To install it, use the Installation Wizard, which is available by selecting the following: - -- Sitecore Desktop: Sitecore » Development Tools » Installation Wizard -- Sitecore Control Panel: Administration » Install a Package \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1/Release_Notes.md deleted file mode 100644 index dc33a66e5..000000000 --- a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1/Release_Notes.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1/Release_Notes ---- - -The SharePoint Connect module 2.1 rev.150128 is released. Tested with Sitecore XP 8.0 150110. - -## Compatibility - -This version of the module only runs on Sitecore XP 8.0 with SharePoint Server 2010, SharePoint Foundation 2010, SharePoint Server 2013, SharePoint Foundation 2013, SharePoint Online. - -## Change log - -New features: - -- SharePoint Connect uses the new Item Provider available in Sitecore XP 8.0 -- New pipeline-based provider was introduced in Sitecore XP 8.0 using processors instead of inheritance -- New visual appearance of the “SharePoint Integration” wizard - -Issues resolved: - -- 1434: [SPIF] Using dot in the name of the SharePoint document results in the incorrect “extension” field of the Sitecore item -- 1425: [SPIF] Predefined credentials do not work correctly \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1/Upgrade_Guide.md b/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1/Upgrade_Guide.md deleted file mode 100644 index 2499bd7b4..000000000 --- a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1/Upgrade_Guide.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: "Upgrade Guide - 2.0 rev.140718 to 2.1 rev.150128" -description: "" -origin: https://dev.sitecore.net/Downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1/Upgrade_Guide ---- - -To upgrade the SharePoint Integration Framework from version 2.0 rev.140718 to SharePoint Connect version 2.1 rev.150128: - -- Upgrade Sitecore to XP 8.0 -- Install SharePoint Connect 2.1 upgrade package -- Move \App_Config\Include\sharepoint.config to \App_Config\Include\Sharepoint folder (this is necessary to make Sitecore patch item provider pipelines in right order) -- Make the following changes in the sharepoint.config: Remove the following lines: - - ``` - `` -   `` - `` - ``Sitecore.Sharepoint.Data.Providers.ItemProvider, Sitecore.Sharepoint.Data.Providers`` - `` - `` - `` - - ``` -- Add the following to the pipelines node: - - ``` - `` - `` - `` - `` - `` - `` - `` - `` - `` - ``  - - ``` \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1/index.md b/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1/index.md deleted file mode 100644 index 116024a15..000000000 --- a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1/index.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: "SharePoint Connect 2.1" -description: "" -origin: https://dev.sitecore.net/Downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1.aspx ---- - -SharePoint Connect provides a flexible framework for creating synergy between your SharePoint assets and your Sitecore content delivery engine. You can use the framework to integrate your Sitecore solution with SharePoint in many different ways - out of the box. It also provides an extensible framework that you can use to customize your solution to meet your specific needs, while keeping the look and feel of your Sitecore site and following Sitecore's best practices. - -SharePoint Connect offers page-level, item-level, and API-level integration. It can be used with Sitecore XP and gives you the tools to harness the advantages of SharePoint's document management features within Sitecore. - - - - SharePoint Connect was formerly known as the **SharePoint Integration Framework**. Older versions of this module [can be found on the Sitecore Developer Network (SDN)](http://sdn.sitecore.net/Products/SPIF). - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [SharePoint Connect 2.1 rev. 150218](https://scdp.blob.core.windows.net/downloads/SharePoint%20Connect/2%200/SharePoint%20Connect%202%201/Secure/SharePoint%20Integration%20Framework%202.1%20rev.%20150128.zip) | SharePoint Connect 2.1 rev. 150218 package. Refer to the **SharePoint Connect Developers Cookbook** for the configuration instructions and review the **release notes** before installing. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1/Release_Notes) | Release notes for SharePoint Connect 2.1 rev.150128 | - -## Upgrading - - | Resource | Description | - | --- | --- | - | [Upgrade Guide](/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1/Upgrade_Guide) | Upgrading from **version 2.0 rev.140718** to **2.1 rev.150128**.
| - | [Upgrade Package](https://scdp.blob.core.windows.net/downloads/SharePoint%20Connect/2%200/SharePoint%20Connect%202%201/Secure/SharePoint%20Integration%20Framework%202.1%20rev.%20150128%20Upgrade.zip) | Package for upgrading SharePoint Integration Framework from version 2.0 rev.140718 to SharePoint Connect version 2.1 rev.150128. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Installation Guide](/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1/Installation_Guide) | | - | [SharePoint Connect Developers Cookbook A4](https://scdp.blob.core.windows.net/downloads/SharePoint%20Connect/2%200/SharePoint%20Connect%202%201/Non-secure/SharePoint_Connect_Developers_Cookbook_21-A4.pdf) | This cookbook is for Sitecore partners and developers, and includes useful tips as well as examples (A4) | - | [SharePoint Connect Developers Cookbook US-Letter](https://scdp.blob.core.windows.net/downloads/SharePoint%20Connect/2%200/SharePoint%20Connect%202%201/Non-secure/SharePoint_Connect_Developers_Cookbook_21-USLetter.pdf) | This cookbook is for Sitecore partners and developers, and includes useful tips as well as examples (US-Letter) | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2/Installation_Guide.md b/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2/Installation_Guide.md deleted file mode 100644 index 383212729..000000000 --- a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2/Installation_Guide.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: "Installation Guide" -description: "" -origin: https://dev.sitecore.net/Downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2/Installation_Guide ---- - -## Prerequisites - -- Sitecore XP 8.1 -- .NET Framework 4.5 -- SharePoint 2013 client-side object model (CSOM) DLLs (These can be downloaded from the [Microsoft website](https://www.microsoft.com/en-us/download/details?id=35585&751be11f-ede8-5a0c-058c-2ee190a24fa6=True&e6b34bbe-475b-1abd-2c51-b5034bcdd6d2=True)) - -## Installing SharePoint Connect - -SharePoint Connect is distributed as a Sitecore package. To install it, use the Installation Wizard, which is available by selecting the following: - -- Sitecore Desktop: Sitecore » Development Tools » Installation Wizard -- Sitecore Control Panel: Administration » Install a Package \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2/Release_Notes.md deleted file mode 100644 index 47271884c..000000000 --- a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2/Release_Notes.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2/Release_Notes ---- - -The SharePoint Connect module 2.2 rev. 160617 is released. Tested with Sitecore XP 8.1 (8.1 Update-2 and 8.1 Update-3). - -## Compatibility - -This version of the module runs on Sitecore XP 8.1 with SharePoint Server 2010, SharePoint Foundation 2010, SharePoint Server 2013, SharePoint Foundation 2013, SharePoint Online. - -## Change log - -New features: - -- SharePoint Connect now supports Sitecore XP 8.1 - -Issues resolved: - -- 53414: [SPIF] SharePoint Online integration no longer working \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2/Upgrade_Guide.md b/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2/Upgrade_Guide.md deleted file mode 100644 index d9879daca..000000000 --- a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2/Upgrade_Guide.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Upgrade Guide" -description: "" -origin: https://dev.sitecore.net/Downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2/Upgrade_Guide ---- - -To upgrade the SharePoint Integration Framework from version 2.1 rev. 150128 to SharePoint Connect version 2.2 rev. 160617: - -- Upgrade Sitecore to XP 8.1 Update-2 or 8.1 Update-3 -- Install SharePoint Connect 2.1 upgrade package - -To install it, use the Installation Wizard, which is available by selecting the following: - -- Sitecore Desktop: Sitecore » Development Tools » Installation Wizard -- Sitecore Control Panel: Administration » Install a Package \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2/index.md b/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2/index.md deleted file mode 100644 index 3cdb6b91d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2/index.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: "SharePoint Connect 2.2" -description: "" -origin: https://dev.sitecore.net/Downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2.aspx ---- - -SharePoint Connect provides a flexible framework for creating synergy between your SharePoint assets and your Sitecore content delivery engine. You can use the framework to integrate your Sitecore solution with SharePoint in many different ways - out of the box. It also provides an extensible framework that you can use to customize your solution to meet your specific needs, while keeping the look and feel of your Sitecore site and following Sitecore's best practices. - -SharePoint Connect offers page-level, item-level, and API-level integration. It can be used with Sitecore XP and gives you the tools to harness the advantages of SharePoint's document management features within Sitecore. - - - - SharePoint Connect was formerly known as the **SharePoint Integration Framework**. Older versions of this module [can be found on the Sitecore Developer Network (SDN)](http://sdn.sitecore.net/Products/SPIF). - - - -## Downloads - - | Resource | Description | - | --- | --- | - | [SharePoint Connect 2.2 rev. 160617](https://scdp.blob.core.windows.net/downloads/SharePoint%20Connect/2%200/SharePoint%20Connect%202%202/Secure/SharePoint%20Integration%20Framework%202.2%20rev.%20160617.zip) | SharePoint Connect 2.2 rev. 160617 package. Refer to the **SharePoint Connect Developers Cookbook** for the configuration instructions and review the **release notes** before installing. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2/Release_Notes) | Release notes for SharePoint Connect 2.2 rev. 160617. | - -## Upgrading - - | Resource | Description | - | --- | --- | - | [Upgrade Guide](/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2/Upgrade_Guide) | Upgrading from **version 2.1 rev. 150128** to **2.2 rev. 160617**.
| - | [Upgrade Package](https://scdp.blob.core.windows.net/downloads/SharePoint%20Connect/2%200/SharePoint%20Connect%202%202/Secure/SharePoint%20Integration%20Framework%202.2%20rev.%20160617%20Upgrade.zip) | Package for upgrading SharePoint Integration Framework from version 2.1 rev. 150128 to SharePoint Connect version 2.2 rev. 160617. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Installation Guide](/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2/Installation_Guide) | The installation procedure for SharePoint Connect 2.2 rev. 160617. | - | [SharePoint Connect Developers Cookbook A4](https://scdp.blob.core.windows.net/downloads/SharePoint%20Connect/2%200/SharePoint%20Connect%202%201/Non-secure/SharePoint_Connect_Developers_Cookbook_21-A4.pdf) | This cookbook is for Sitecore partners and developers, and includes useful tips as well as examples (A4). | - | [SharePoint Connect Developers Cookbook US-Letter](https://scdp.blob.core.windows.net/downloads/SharePoint%20Connect/2%200/SharePoint%20Connect%202%201/Non-secure/SharePoint_Connect_Developers_Cookbook_21-USLetter.pdf) | This cookbook is for Sitecore partners and developers, and includes useful tips as well as examples (US-Letter). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/index.md b/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/index.md deleted file mode 100644 index d3a5d36c0..000000000 --- a/apps/devportal/data/markdown/pages/downloads/SharePoint_Connect/index.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "SharePoint Connect" -description: "SharePoint Connect offers page-level, item-level, and API-level integration. It can be used with Sitecore XP and gives you the tools to harness the advantages of SharePoint's document management features within Sitecore." -origin: https://dev.sitecore.net/Downloads/SharePoint_Connect.aspx ---- - - - -## SharePoint Connect 2.0 - - -[SharePoint Connect 2.3](/downloads/SharePoint_Connect/2_0/SharePoint_Connect_23)\ -[SharePoint Connect 2.2](/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_2)\ -[SharePoint Connect 2.1](/downloads/SharePoint_Connect/2_0/SharePoint_Connect_2_1) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/10x/Sitecore_AI_Automated_Personalization_Standard_101/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/10x/Sitecore_AI_Automated_Personalization_Standard_101/index.md deleted file mode 100644 index 62f609832..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/10x/Sitecore_AI_Automated_Personalization_Standard_101/index.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Sitecore AI Automated Personalization Standard 10.1.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_AI_Automated_Personalization_Standard/10x/Sitecore_AI_Automated_Personalization_Standard_101.aspx ---- - - - - This release is deprecated, please use [Sitecore AI Automated Personalization Standard 3.0](/downloads/Sitecore_AI_Automated_Personalization_Standard/3x/Sitecore_AI_Automated_Personalization_Standard_300) instead. - - -This module enables AI Auto-Personalization for Sitecore Experience Platform installations with traffic no greater than 12 million visits per year.\ -Sitecore AI Automated Personalization Standard 10.1.0 is compatible with Sitecore Experience Platform 10.1. - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore AI Auto-Personalization Installation package](https://scdp.blob.core.windows.net/downloads/Sitecore%20AI%20Automated%20Personalization%20Standard/10x/Sitecore%20AI%20Automated%20Personalization%20Standard%20101/Secure/Sitecore.AI.standard.10.1.zip) | The installation package for Sitecore AI Auto-Personalization Standard module for Sitecore XP 10.1. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_AI_Automated_Personalization_Standard/10x/Sitecore_AI_Automated_Personalization_Standard_101/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20AI%20Automated%20Personalization%20Standard/10x/Sitecore%20AI%20Automated%20Personalization%20Standard%20101/Secure/Installation_Guide_for_Sitecore_AI_Automated_Personalization_Standard.pdf) | A guide that provides step-by-step instructions for installing Sitecore AI Auto-Personalization Standard. | - | [User Documentation](https://doc.sitecore.com/users/101/sitecore-experience-platform/en/sitecore-ai---automated-personalization.html) | A set of conceptual and procedural topics for Sitecore AI Auto-Personalization Standard users. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/2x/Sitecore_AI_Automated_Personalization_Standard_200/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/2x/Sitecore_AI_Automated_Personalization_Standard_200/index.md deleted file mode 100644 index e8b19ffd7..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/2x/Sitecore_AI_Automated_Personalization_Standard_200/index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Sitecore AI Automated Personalization Standard 2.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_AI_Automated_Personalization_Standard/2x/Sitecore_AI_Automated_Personalization_Standard_200.aspx ---- - -This module enables AI Auto-Personalization for Sitecore Experience Platform installations with traffic no greater than 12 million visits per year. - -Sitecore AI Automated Personalization Standard 2.0.0 is compatible with Sitecore Experience Platform 10.0. - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore AI Auto-Personalization Installation package](https://scdp.blob.core.windows.net/downloads/Sitecore%20AI%20Automated%20Personalization%20Standard/2x/Sitecore%20AI%20Automated%20Personalization%20Standard%20200/Secure/Sitecore.AI.Standard.2.0.0.rev.00104.zip) | The installation package for Sitecore AI Auto-Personalization Standard module for Sitecore XP. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_AI_Automated_Personalization_Standard/2x/Sitecore_AI_Automated_Personalization_Standard_200/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20AI%20Automated%20Personalization%20Standard/2x/Sitecore%20AI%20Automated%20Personalization%20Standard%20200/Secure/Installation_Guide_for_Sitecore_AI_Automated_Personalization_Standard_2_0.pdf) | A guide that provides step-by-step instructions for installing Sitecore AI Auto-Personalization Standard. | - | [User Documentation](https://doc.sitecore.com/users/100/sitecore-experience-platform/en/sitecore-ai---automated-personalization.html) | A set of conceptual and procedural topics for Sitecore AI Auto-Personalization Standard users. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/3x/Sitecore_AI_Automated_Personalization_Standard_300/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/3x/Sitecore_AI_Automated_Personalization_Standard_300/index.md deleted file mode 100644 index a5695d178..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/3x/Sitecore_AI_Automated_Personalization_Standard_300/index.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: "Sitecore AI Automated Personalization Standard 3.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_AI_Automated_Personalization_Standard/3x/Sitecore_AI_Automated_Personalization_Standard_300.aspx ---- - -This module enables AI Auto-Personalization for Sitecore Experience Platform installations with traffic no greater than 12 million visits per year. - -Sitecore AI Automated Personalization Standard 3.0.0 is compatible with Sitecore Experience Platform 10.1. - -## Download options for Sitecore Container deployments - - | Resource | Description | - | --- | --- | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases) | The Sitecore Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore in development and production container environments. | - | [Docker Deployment Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20AI%20Automated%20Personalization%20Standard/3x/Sitecore%20AI%20Automated%20Personalization%20Standard%20300/Secure/Sitecore_AI_3_0_Installation_Guide_with_Docker_Containers-en.pdf) | A guide that provides step-by-step instructions for installing Sitecore AI on docker containers. | - | [Kubernetes Deployment Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20AI%20Automated%20Personalization%20Standard/3x/Sitecore%20AI%20Automated%20Personalization%20Standard%20300/Secure/Sitecore_AI_3_0_Installation_Guide_with_Kubernetes-en.pdf) | A guide that provides step-by-step instructions for installing Sitecore AI on Kubernetes. | - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore AI Auto-Personalization Installation package](https://scdp.blob.core.windows.net/downloads/Sitecore%20AI%20Automated%20Personalization%20Standard/3x/Sitecore%20AI%20Automated%20Personalization%20Standard%20300/Secure/Sitecore.AI.Standard.3.0.0.rev.00099.zip) | The installation package for Sitecore AI Auto-Personalization Standard module for Sitecore XP. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_AI_Automated_Personalization_Standard/3x/Sitecore_AI_Automated_Personalization_Standard_300/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20AI%20Automated%20Personalization%20Standard/3x/Sitecore%20AI%20Automated%20Personalization%20Standard%20300/Secure/Installation_Guide_for_Sitecore_AI_Automated_Personalization_Standard_3_0.pdf) | A guide that provides step-by-step instructions for installing Sitecore AI Auto-Personalization Standard. | - | [User Documentation](https://doc.sitecore.com/users/101/sitecore-experience-platform/en/sitecore-ai---automated-personalization.html) | A set of conceptual and procedural topics for Sitecore AI Auto-Personalization Standard users. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/3x/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/3x/index.md deleted file mode 100644 index 4e22cebbb..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/3x/index.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: "3.x" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_AI_Automated_Personalization_Standard/3x/ ---- - -### [Sitecore AI Automated Personalization Standard 3.0.0](/downloads/Sitecore_AI_Automated_Personalization_Standard/3x/Sitecore_AI_Automated_Personalization_Standard_300) - -This release is compatible with Sitecore XP 10.1. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/4x/Sitecore_AI_Automated_Personalization_Standard_400/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/4x/Sitecore_AI_Automated_Personalization_Standard_400/index.md deleted file mode 100644 index 0d5a0c221..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/4x/Sitecore_AI_Automated_Personalization_Standard_400/index.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: "Sitecore AI Automated Personalization Standard 4.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_AI_Automated_Personalization_Standard/4x/Sitecore_AI_Automated_Personalization_Standard_400.aspx ---- - -This module enables AI Auto-Personalization for Sitecore Experience Platform installations with traffic no greater than 12 million visits per year. - -Sitecore AI Automated Personalization Standard 4.0.0 is compatible with Sitecore Experience Platform 10.2. - - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore AI Auto-Personalization Installation package](https://scdp.blob.core.windows.net/downloads/Sitecore%20AI%20Automated%20Personalization%20Standard/4x/Sitecore%20AI%20Automated%20Personalization%20Standard%20400/Secure/Sitecore.AI.Standard.4.0.0%20rev.%2000087.zip) | The installation package for Sitecore AI Auto-Personalization Standard module for Sitecore XP. | - | [Sitecore AI SIF Deployment Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20AI%20Automated%20Personalization%20Standard/4x/Sitecore%20AI%20Automated%20Personalization%20Standard%20400/Secure/SitecoreAI.SIF.Deployment.4.0.0%20rev.%2000087.zip) | The zip package containing SIF template files used in Sitecore AI module installation if using SIF scripts mode. | - | [Sitecore AI CM WDP](https://scdp.blob.core.windows.net/downloads/Sitecore%20AI%20Automated%20Personalization%20Standard/4x/Sitecore%20AI%20Automated%20Personalization%20Standard%20400/Secure/Sitecore.AI.cm.4.0.0%20rev.%2000087.scwdp.zip) | The CM WDP package used in Sitecore AI module installation if using SIF scripts mode. | - | [Sitecore AI CD WDP](https://scdp.blob.core.windows.net/downloads/Sitecore%20AI%20Automated%20Personalization%20Standard/4x/Sitecore%20AI%20Automated%20Personalization%20Standard%20400/Secure/Sitecore.AI.cd.4.0.0%20rev.%2000087.scwdp.zip) | The CD WDP package used in Sitecore AI module installation if using SIF scripts mode. | - | [Sitecore AI XConnect WDP](https://scdp.blob.core.windows.net/downloads/Sitecore%20AI%20Automated%20Personalization%20Standard/4x/Sitecore%20AI%20Automated%20Personalization%20Standard%20400/Secure/Sitecore.AI.xconnect.4.0.0%20rev.%2000087.scwdp.zip) | The XConnnect WDP package used in Sitecore AI module installation if using SIF scripts mode. | - | [Sitecore AI Xdb WDP](https://scdp.blob.core.windows.net/downloads/Sitecore%20AI%20Automated%20Personalization%20Standard/4x/Sitecore%20AI%20Automated%20Personalization%20Standard%20400/Secure/Sitecore.AI.xdb.4.0.0%20rev.%2000087.scwdp.zip) | The Xdb WDP package used in Sitecore AI module installation if using SIF scripts mode. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_AI_Automated_Personalization_Standard/4x/Sitecore_AI_Automated_Personalization_Standard_400/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20AI%20Automated%20Personalization%20Standard/4x/Sitecore%20AI%20Automated%20Personalization%20Standard%20400/Secure/Sitecore_AI_4_0_Installation_Guide_for_Personalization_Standard-en.pdf) | A guide that provides step-by-step instructions for installing Sitecore AI Auto-Personalization Standard. | - | [User Documentation](https://doc.sitecore.com/xp/en/users/102/sitecore-experience-platform/sitecore-ai---automated-personalization.html) | A set of conceptual and procedural topics for Sitecore AI Auto-Personalization Standard users. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/index.md deleted file mode 100644 index 0d0db66b6..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_AI_Automated_Personalization_Standard/index.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: "Sitecore AI Automated Personalization Standard" -description: "A module to enable Sitecore AI Auto-Personalization for Sitecore XP installation with traffic no greater than 12 million visits per year." -origin: https://dev.sitecore.net/Downloads/Sitecore_AI_Automated_Personalization_Standard.aspx ---- - - - -## Sitecore AI Automated Personalization Standard 4.x - - -[Sitecore AI Automated Personalization Standard 4.0.0](/downloads/Sitecore_AI_Automated_Personalization_Standard/4x/Sitecore_AI_Automated_Personalization_Standard_400)\ -This release is compatible with Sitecore XP 10.2. - - - - - -## Sitecore AI Automated Personalization Standard 3.x - - -[Sitecore AI Automated Personalization Standard 3.0.0](/downloads/Sitecore_AI_Automated_Personalization_Standard/3x/Sitecore_AI_Automated_Personalization_Standard_300)\ -This release is compatible with Sitecore XP 10.1. - - - - - -## Sitecore AI Automated Personalization Standard 2.x - - -[Sitecore AI Automated Personalization Standard 2.0.0](/downloads/Sitecore_AI_Automated_Personalization_Standard/2x/Sitecore_AI_Automated_Personalization_Standard_200)\ -This release is compatible with Sitecore XP 10.0. - - - - - -## Sitecore AI Automated Personalization Standard 10.x - - -[Sitecore AI Automated Personalization Standard 10.1.0](/downloads/Sitecore_AI_Automated_Personalization_Standard/10x/Sitecore_AI_Automated_Personalization_Standard_101)\ -This release is deprecated, please use Sitecore AI 3.0 instead. - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/80/Sitecore_Azure_80/Release_notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/80/Sitecore_Azure_80/Release_notes.md deleted file mode 100644 index c4f74d140..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/80/Sitecore_Azure_80/Release_notes.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Release notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure/80/Sitecore_Azure_80/Release_notes ---- - -# Release notes - -Some of the issues described contain internal reference numbers. You can use these reference numbers when communicating with Sitecore about a particular issue or feature. - -## May 25, 2015 - -Released Sitecore Azure 8.0 rev. 150522. - -Tested with Sitecore 8.0 rev. 150427. - -## Compatibility - -Sitecore Azure 8.0 requires Azure SDK 2.5.1 and Sitecore® Experience Platform™ 8.0.  - -## Change log: - -### New features: - -- Additional support for deploying Sitecore 8.0 -- Additional support for using the Azure 2.5.1 SDK -- Additional support for the new publishing settings schema - -### Improvements: - -- There is now a drop-down menu so you can select the SQL Server Tier in the Content Editor -- You can now select VM size from the drop-down menu in New Deployment dialog in the Azure module UI -- The UI has been changed to make it better match the style of Sitecore Experience Platform 8.0 - -### Resolved issues: - -- AzureInRoleCacheSessionStateProvider now supports both Private and Shared session states. (435578) -- An error occurred when attempting to request the Environment File. This has been fixed. (434974) -- Deploying to Local Emulator failed to initiate in Sitecore Azure 7.5. This has been fixed in Sitecore Azure 8.0. (426308) - -## Known issues - -- Upgrade issue with Sitecore 8.0 Update-3 - -Sitecore Azure 8.0 upgrade installation fails with Sitecore 8.0 Update 3, below is the workaround for upgrading - -- In Web.config file, configuration/configSections node, add following line: - - `
` - -- After configuration/configSections node, add following line: - - ```` - - -- Storage limitations - -Windows Azure Cloud Services has some limitations on the app drive. For a Sitecore deployment, this means the App drive free space is limited to static files of no more than: - -- 360MB on Content Delivery deployments -- 150MB on Content Editing deployments - -This is more than enough in most single sites if larger media files are not deployed as physical files. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/80/Sitecore_Azure_80/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/80/Sitecore_Azure_80/index.md deleted file mode 100644 index bdfd9d017..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/80/Sitecore_Azure_80/index.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Sitecore Azure 8.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure/80/Sitecore_Azure_80.aspx ---- - -Sitecore Azure reduces costs and provides scalability and geographical load-balancing by automating the deployment of your Sitecore solution to the Microsoft Azure computing cloud. After you install Sitecore Azure in your internal content management environment, you can use Sitecore Azure to configure your Sitecore Azure subscription and to manage your Sitecore Azure content delivery instances in the cloud. The Sitecore Azure browser-based user interface contains instructions that describe how to obtain a Sitecore Azure subscription. - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Azure/80/Sitecore_Azure_80/Release_notes) | Read the list of features, improvements, and fixes that have been implemented in this release.
| - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Azure 8.0](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure/80/Sitecore%20Azure%2080/Secure/Sitecore%20Azure%2080%20rev%20150522.zip) | Download Sitecore Azure rev. 150522 and use the [supporting installation documentation](https://doc.sitecore.net/cloud/80/azure) for Azure on the Sitecore Documentation site. | - | [Sitecore Azure Upgrade from 7.2 to 8.0](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure/80/Sitecore%20Azure%2080/Secure/Sitecore%20Azure%2080%20rev%20150522%20from%2072.update) | To upgrade from Sitecore Azure 7.2 rev. 140411 to Sitecore Azure 8.0 rev. 150522, download this package and use the [step by step guide to upgrade Sitecore Azure 7.2 to 8.0](~/media/8DFB3581A74042AB96DFC3D7D4A2AB7E.ashx). | - | [Sitecore Azure Upgrade from 7.5 to 8.0](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure/80/Sitecore%20Azure%2080/Secure/Sitecore%20Azure%2080%20rev%20150522%20from%2075.update) | To upgrade from Sitecore Azure 7.5 rev. 141126 to Sitecore Azure 8.0 rev. 150522, download this package, and use [the step by step guide to upgrade Sitecore Azure 7.5 to 8.0](~/media/B31D166BE4684F738C0916C83A0E4705.ashx). | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.net/cloud/80/azure) | Visit [Sitecore Documentation](https://doc.sitecore.net/cloud/80/azure_) for more information about Sitecore Azure. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update1/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update1/Release_Notes.md deleted file mode 100644 index 0899a432a..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update1/Release_Notes.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update1/Release_Notes ---- - -**December 2015 - released Sitecore Azure 8.0 rev. 150522 Hotfix 68545-1** - -This is a product update. Sitecore recommends that you upgrade to this release if it includes fixes that meet the specific needs of your organization. If this release does not include new functionality or specific fixes that your organization requires, you may benefit from waiting to upgrade until Sitecore releases an update that is relevant for your organization. This is especially true in production environments. - -## Documentation - -For all Sitecore Azure 8.0 documentation, please visit the new [Sitecore Documentation Site](https://doc.sitecore.net/cloud/80/azure). - -## System requirements - -- Sitecore Azure 8.0 rev. 150522 Hotfix 68545-1 requires Azure SDK 2.7.1 and Sitecore® Experience Platform™ 8.0. - - Sitecore Azure 8.0 rev. 150522 Hotfix 68545-1 was tested with Sitecore 8.0 rev. 150812. - -## New features & improvements - -- Support for Azure 2.7.1 SDK has been added. -- The Windows Azure Cache component has been updated to version 2.7.0. -- The Windows Azure Storage component has been updated to version 5.0.2. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update1/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update1/index.md deleted file mode 100644 index 97e2b2f6c..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update1/index.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: "Sitecore Azure 8.0 rev. 150522 Hotfix 68545-1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update1.aspx ---- - -Sitecore Azure reduces costs and provides scalability and geographical load-balancing by automating the deployment of your Sitecore solution to the Microsoft Azure computing cloud. After you install Sitecore Azure in your internal content management environment, you can use Sitecore Azure to configure your Sitecore Azure subscription and to manage your Sitecore Azure content delivery instances in the cloud. The Sitecore Azure browser-based user interface contains instructions that describe how to obtain a Sitecore Azure subscription. - -This hotfix introduces support for the Microsoft Azure SDK version 2.7.1. - -Looking for a different version? See [all available 8.0 and 8.1 versions](/downloads/Sitecore_Azure). - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update1/Release_Notes) | Read the list of features, improvements, and fixes that have been implemented in this release.
| - | [Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure/80/Sitecore%20Azure%2080%20Update1/Secure/SitecoreAzure80_rev150522_Hotfix68545_1_UpdateGuide.pdf) | To upgrade from a previous Sitecore Azure version please follow the instructions in this guide | - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Azure 8.0 Hotfix 68545-1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure/80/Sitecore%20Azure%2080%20Update1/Secure/Sitecore%20Azure%208.0%20rev.%20150522%20Hotfix%2068545-1.zip) | Download this package to install Sitecore Azure rev. 150522 Hotfix 68545-1. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.net/cloud/80/azure) | Visit [Sitecore Documentation](https://doc.sitecore.net/cloud/80/azure_) for more information about Sitecore Azure. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update2/Release_notes_test.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update2/Release_notes_test.md deleted file mode 100644 index ab4dd9b1b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update2/Release_notes_test.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: "Release notes - Sitecore Azure 8.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update2/Release_notes_test ---- - -**November 2016 – released Sitecore Azure 8.0 (rev. 161110)** - -This product update includes a Redis Session State Provider, and is required for any future Sitecore Azure deployments on Sitecore Experience Platform 8.0.​ - -Previous versions of Sitecore Azure 8.0 configure Sitecore to use a custom Session State Provider based on the Azure In-Role Cache. Microsoft will retire its Azure In-Role Cache Service on Nov 30, 2016. - -## New feature/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​Sitecore Azure now supports the Sitecore ASP.NET session state provider for Redis, which enables you to use Azure Redis Cache as your session state store.​​ | - | - | - | ​​Sitecore Azure now supports using the Azure 2.9.1 SDK.​ ​ | - | - | - | ​Support has been added for Azure SQL Database V12 and support for SQL Database V2.0 has been removed - existing deployments will continue to work correctly with Azure SQL V2.0, whereas new deployments will use Azure SQL V12.​ | - | - | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update2/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update2/index.md deleted file mode 100644 index b9cd6f556..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update2/index.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: "Sitecore Azure 8.0 rev. 161110" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update2.aspx ---- - -Sitecore Azure reduces costs and provides scalability and geographical load-balancing by automating the deployment of your Sitecore solution to the Microsoft Azure computing cloud. After you install Sitecore Azure in your internal content management environment, you can use Sitecore Azure to configure your Sitecore Azure subscription and to manage your Sitecore Azure content delivery instances in the cloud. The Sitecore Azure browser-based user interface contains instructions that describe how to obtain a Sitecore Azure subscription. - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update2/Release_notes_test) | Read the list of features, improvements, and fixes that have been implemented in this release.
| - | [Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure/80/Sitecore%20Azure%2080%20Update2/Secure/Upgrade%20from%20Sitecore%20Azure%2080%20to%2080%20rev%20161110.pdf) | To upgrade from a previous Sitecore Azure version please follow the instructions in this guide | - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Azure 8.0 rev. 161110 Update Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure/80/Sitecore%20Azure%2080%20Update2/Secure/Sitecore%20Azure%208.0%20rev.%20161110%20Update%20package.zip) | Download the files that you need for the upgrade process from Sitecore Azure 8.0 rev.150522 to Sitecore Azure 8.0 rev.161110. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.net/cloud/80/azure) | Visit [Sitecore Documentation](https://doc.sitecore.net/cloud/80/azure_) for more information about Sitecore Azure. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81/Release_Notes.md deleted file mode 100644 index ab66a80c7..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81/Release_Notes.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81/Release_Notes ---- - -**December 4, 2015 - released Sitecore Azure 8.1 (rev.151119)** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -## Documentation - -For all Sitecore Azure 8.1 documentation, please visit the new [Sitecore Documentation Site](https://doc.sitecore.net/cloud/azure). - -## System requirements - -- Sitecore Azure 8.1 requires Azure SDK 2.7.1 and Sitecore® Experience Platform™ 8.1. - - Sitecore Azure 8.1 was tested with Sitecore 8.1 Initial Release and Sitecore 8.1 Update-1. - -## New features & improvements - -- Supports deployment for Sitecore 8.1. -- Support for Azure 2.7.1 SDK. -- Support for Windows Azure Storage 5.0.2. -- Support for the Windows Azure Cache 2.7.0. -- With Sitecore Azure 8.1, Sitecore SQL databases are now deployed to Azure SQL Database V12. - -## Resolved Issues - -- The Heartbeat page failed when using a legacy version of the page. This has been fixed to use the standard Sitecore Heartbeat page. (58867) -- An XML deserialization error occurred when uploading an environment file for the second time. This has been fixed. (58884) -- The custom errors setting was turned off due to deployment preparations. This caused the setting it to be purged in the resulting web.config file. This has been fixed. (58889) -- The Web.config file size may become larger than allowed limit (250KB) during deployment preparations. This has been fixed. (66435) -- When deploying both an editing farm and a delivery farm to the same slot, the editing farm did not find the necessary connection string, database definition and publish target. This has been fixed. (68283) -- When deploying a delivery farm, Sitecore client-related files were unnecessarily included. This has been fixed. (70106) -- Logging in a multithread environment might cause a deadlock on a Sitecore farm. This has been fixed. (70502) -- The Azure in-role cache removed all session data before Sitecore tried to fire the Session_End event. This has been fixed. (72123) \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81/index.md deleted file mode 100644 index 55c966733..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81/index.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Sitecore Azure 8.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81 ---- - -Sitecore Azure reduces costs and provides scalability and geographical load-balancing by automating the deployment of your Sitecore solution to the Microsoft Azure computing cloud. After you install Sitecore Azure in your internal content management environment, you can use Sitecore Azure to configure your Sitecore Azure subscription and to manage your Sitecore Azure content delivery instances in the cloud. The Sitecore Azure browser-based user interface contains instructions that describe how to obtain a Sitecore Azure subscription. - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81/Release_Notes) | Read the list of features, improvements, and fixes that have been implemented in this release.
| - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Azure 8.1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure/Sitecore%20Azure%2081/Sitecore%20Azure%208.1/Secure/Sitecore%20Azure%208.1%20rev.%20151119.zip) | Download Sitecore Azure 8.1 rev. 151119 and use the [supporting installation documentation](https://doc.sitecore.net/cloud/81/azure) for Azure on the Sitecore Documentation site. | - | [Sitecore Azure Upgrade from 7.2 to 8.1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure/Sitecore%20Azure%2081/Sitecore%20Azure%208.1/Secure/Upgrade%20package%20for%20Sitecore%20Azure%20from%207.2%20to%208.1.zip) | To upgrade from Sitecore Azure 7.2 rev. 140411 to Sitecore Azure 8.1 rev. 151119, download this package, and use the [step by step guide to upgrade Sitecore Azure 7.2 to 8.1.](~/media/90297FA95C56492F992028A11AC6C10D.ashx) | - | [Sitecore Azure Upgrade from 7.5 to 8.1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure/Sitecore%20Azure%2081/Sitecore%20Azure%208.1/Secure/Upgrade%20package%20for%20Sitecore%20Azure%20from%207.5%20to%208.1.zip) | To upgrade from Sitecore Azure 7.5 rev. 141126 to Sitecore Azure 8.1 rev. 151119, download this package, and use the [step by step guide to upgrade Sitecore Azure 7.5 to 8.1](~/media/0D70190450F447AB8B9A31F4CDF94300.ashx). | - | [Sitecore Azure Upgrade from 8.0 to 8.1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure/Sitecore%20Azure%2081/Sitecore%20Azure%208.1/Secure/Upgrade%20package%20for%20Sitecore%20Azure%20from%208.0%20to%208.1.zip) | To upgrade from Sitecore Azure 8.0 rev. 150522 to Sitecore Azure 8.1 rev. 151119, download this package, and use the [step by step guide to upgrade Sitecore Azure 8.0 to 8.1](~/media/ECF0C57184344A62BB070B66C0A9E9E2.ashx). | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.net:443/en/Products/Cloud/81/Azure) | Visit [Sitecore Documentation](https://doc.sitecore.net/cloud/81/azure) for more information about Sitecore Azure. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_Update2/Release_notes_test.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_Update2/Release_notes_test.md deleted file mode 100644 index 6a46c037f..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_Update2/Release_notes_test.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Release notes - Sitecore Azure 8.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_Update2/Release_notes_test ---- - -**November 2016 – released Sitecore Azure 8.1 (rev. 161109)** - -​This product update includes a Redis Session State Provider, and is required for any future Sitecore Azure deployments on Sitecore Experience Platform 8.1. - -Previous versions of Sitecore Azure 8.1 configure Sitecore to use a custom Session State Provider based on the Azure In-Role Cache. Microsoft will retire its Azure In-Role Cache Service on Nov 30, 2016. - -**Important:** This update is the last planned release for Sitecore Azure 8.1. - -## New feature/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Sitecore Azure now supports the Sitecore ASP.NET session state provider for Redis, which enables you to use Azure Redis Cache as your session state store.​​​ | - | - | - | ​​Sitecore Azure now supports using the Azure 2.9.1 SDK.​ ​ | - | - | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_Update2/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_Update2/index.md deleted file mode 100644 index e93981ef2..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_Update2/index.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: "Sitecore Azure 8.1 rev.161109" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_Update2.aspx ---- - -Sitecore Azure reduces costs and provides scalability and geographical load-balancing by automating the deployment of your Sitecore solution to the Microsoft Azure computing cloud. After you install Sitecore Azure in your internal content management environment, you can use Sitecore Azure to configure your Sitecore Azure subscription and to manage your Sitecore Azure content delivery instances in the cloud. The Sitecore Azure browser-based user interface contains instructions that describe how to obtain a Sitecore Azure subscription. - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_Update2/Release_notes_test) | Read the list of features, improvements, and fixes that have been implemented in this release.
| - | [Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure/Sitecore%20Azure%2081/Sitecore%20Azure%2081%20Update2/Secure/Upgrade%20from%20Sitecore%20Azure%2081%20to%2081%20rev%20161109.pdf) | To upgrade from a previous Sitecore Azure version please follow the instructions in this guide | - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Azure 8.1 rev. 161109 Update Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure/Sitecore%20Azure%2081/Sitecore%20Azure%2081%20Update2/Secure/Sitecore%20Azure%208.1%20rev.161109%20Update%20package.zip) | Download the files that you need for the upgrade process from Sitecore Azure 8.1 rev.151119 to Sitecore Azure 8.1 rev.161109. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.net:443/en/Products/Cloud/81/Azure) | Visit [Sitecore Documentation](https://doc.sitecore.net/cloud/81/azure) for more information about Sitecore Azure. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_rev_151119_Hotfix_1076431/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_rev_151119_Hotfix_1076431/Release_Notes.md deleted file mode 100644 index 5f5feaf95..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_rev_151119_Hotfix_1076431/Release_Notes.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_rev_151119_Hotfix_1076431/Release_Notes ---- - -**May 2015 – released Sitecore Azure 8.1 rev. 151119 Hotfix 107643-1** - -This is a product update. Sitecore recommends that you upgrade to this release if it includes fixes that meet the specific needs of your organization. If this release does not include new functionality or specific fixes that your organization requires, you may benefit from waiting to upgrade until Sitecore releases an update that is relevant for your organization. This is especially true in production environments. - -This hotfix introduces support for Sitecore® Experience Platform™ 8.1 rev. 160302 (8.1 Update 2). - -## Documentation - -For all Sitecore Azure 8.1 documentation, please visit the [Sitecore Documentation Site](https://doc.sitecore.net/cloud/azure). - -## System requirements - -Sitecore Azure 8.1 rev. 151119 Hotfix 107643-1 requires: - -- Sitecore® Experience PlatformTM1 Update-2 or later -- Sitecore Azure 8.1 rev. 151119 -- Azure SDK 2.7.1 - -## New features & improvements - -- Sitecore Azure now supports all API changes in Sitecore 8.1 Update 2 \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_rev_151119_Hotfix_1076431/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_rev_151119_Hotfix_1076431/index.md deleted file mode 100644 index 455b8463d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_rev_151119_Hotfix_1076431/index.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Sitecore Azure 8.1 rev. 151119 Hotfix 107643-1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_rev_151119_Hotfix_1076431.aspx ---- - -Sitecore Azure reduces costs and provides scalability and geographical load-balancing by automating the deployment of your Sitecore solution to the Microsoft Azure computing cloud. After you install Sitecore Azure in your internal content management environment, you can use Sitecore Azure to configure your Sitecore Azure subscription and to manage your Sitecore Azure content delivery instances in the cloud. The Sitecore Azure browser-based user interface contains instructions that describe how to obtain a Sitecore Azure subscription. - -This hotfix introduces support for Sitecore® Experience Platform™ 8.1 Update 2 or later. - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_rev_151119_Hotfix_1076431/Release_Notes) | Read the list of features, improvements, and fixes that have been implemented in this release.
| - | [Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure/Sitecore%20Azure%2081/Sitecore%20Azure%2081%20rev%20151119%20Hotfix%201076431/Secure/Hotfix%20for%20Sitecore%20Azure%2081%20Update%202.pdf) | To upgrade from a previous Sitecore Azure version please follow the instructions in this guide | - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Azure 8.1 Hotfix 107643-1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure/Sitecore%20Azure%2081/Sitecore%20Azure%2081%20rev%20151119%20Hotfix%201076431/Secure/Sitecore%20Azure%208.1%20rev.%20151119%20Hotfix%20107643-1.zip) | Download this package to install Sitecore Azure 8.1 rev. 151119 Hotfix 107643-1 | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.net:443/en/Products/Cloud/81/Azure) | Visit [Sitecore Documentation](https://doc.sitecore.net/cloud/81/azure) for more information about Sitecore Azure. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/index.md deleted file mode 100644 index e9cdf237f..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure/index.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Sitecore Azure" -description: "Sitecore Azure reduces costs and provides scalability and geographical load-balancing by automating the deployment of your Sitecore solution to the Microsoft Azure computing cloud. After you install Sitecore Azure in your internal content management environment, you can use Sitecore Azure to configure your Sitecore Azure subscription and to manage your Sitecore Azure content delivery instances in the cloud. The Sitecore Azure browser-based user interface contains instructions that describe how to obtain a Sitecore Azure subscription." -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure.aspx ---- - - - -## Sitecore Azure 8.1 - - -[Sitecore Azure 8.1 rev.161109](/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_Update2)\ -[Sitecore Azure 8.1 rev. 151119 Hotfix 107643-1](/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81_rev_151119_Hotfix_1076431)\ -[Sitecore Azure 8.1](/downloads/Sitecore_Azure/Sitecore_Azure_81/Sitecore_Azure_81) - - - - - -## Sitecore Azure 8.0 - - -[Sitecore Azure 8.0 rev. 161110](/downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update2)\ -[Sitecore Azure 8.0 rev. 150522 Hotfix 68545-1](/downloads/Sitecore_Azure/80/Sitecore_Azure_80_Update1)\ -[Sitecore Azure 8.0](/downloads/Sitecore_Azure/80/Sitecore_Azure_80) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_200/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_200/index.md deleted file mode 100644 index 2b2eafe11..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_200/index.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: "Sitecore Azure Blob Storage 2.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_200 ---- - -Sitecore Blob Storage allows customer to store large number of media items with more efficient hosting cost and greater performance by removing large blobs from SQL Databases and move them to blob storage. - -Sitecore Azure Blob Storage 2.0.0 is compatible with Sitecore Experience Platform 10.0. - -See [all available versions here](/downloads/Sitecore_Azure_Blob_Storage). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Package for XM and XP](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Sitecore.BlobStorageProvider%202.0.0%20rev.%20000410.scwdp.zip) | Blob Storage Package for XM Scaled, XP Scaled, XM Developer, XP Developer. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_300/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_300/index.md deleted file mode 100644 index dfa0d5e8f..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_300/index.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: "Sitecore Azure Blob Storage 3.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_300.aspx ---- - -Sitecore Blob Storage allows customer to store large number of media items with more efficient hosting cost and greater performance by removing large blobs from SQL Databases and move them to blob storage. - -Sitecore Azure Blob Storage 3.0.0 is compatible with Sitecore Experience Platform 10.1. - -See [all available versions here](/downloads/Sitecore_Azure_Blob_Storage). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Package for XM and XP](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/Sitecore.BlobStorageProvider%203.0.0%20rev.%2000594.scwdp.zip) | Blob Storage Package for XM Scaled, XP Scaled, XM Developer, XP Developer. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_301/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_301/index.md deleted file mode 100644 index f5cc425b6..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_301/index.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: "Sitecore Azure Blob Storage 3.0.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_301 ---- - -Sitecore Blob Storage allows customer to store large number of media items with more efficient hosting cost and greater performance by removing large blobs from SQL Databases and move them to blob storage. - -Sitecore Azure Blob Storage 3.0.1 is compatible with Sitecore Experience Platform 10.1. - -See [all available versions here](/downloads/Sitecore_Azure_Blob_Storage). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Package for XM and XP](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Blob%20Storage/1x/Sitecore%20Azure%20Blob%20Storage%20301/Secure/Sitecore.BlobStorageProvider%203.0.1%20rev.%2000679.scwdp.zip) | Blob Storage Package for XM Scaled, XP Scaled, XM Developer, XP Developer. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_410/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_410/index.md deleted file mode 100644 index fefdd70ec..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_410/index.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: "Sitecore Azure Blob Storage 4.1.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_410.aspx ---- - -Sitecore Blob Storage allows customer to store large number of media items with more efficient hosting cost and greater performance by removing large blobs from SQL Databases and move them to blob storage. - -Sitecore Azure Blob Storage 4.1.0 is compatible with Sitecore Experience Platform 10.2. - -See [all available versions here](/downloads/Sitecore_Azure_Blob_Storage). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Package for XM and XP](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Blob%20Storage/1x/Sitecore%20Azure%20Blob%20Storage%20410/Secure/Sitecore.BlobStorageProvider%204.1.0%20rev.%2000665.scwdp.zip) | Blob Storage Package for XM Scaled, XP Scaled, XM Developer, XP Developer. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_411/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_411/index.md deleted file mode 100644 index facf55bb9..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_411/index.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: "Sitecore Azure Blob Storage 4.1.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_411 ---- - -Sitecore Blob Storage allows customer to store large number of media items with more efficient hosting cost and greater performance by removing large blobs from SQL Databases and move them to blob storage. - -Sitecore Azure Blob Storage 4.1.1 is compatible with Sitecore Experience Platform 10.2. - -See [all available versions here](/downloads/Sitecore_Azure_Blob_Storage). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Package for XM and XP](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Blob%20Storage/1x/Sitecore%20Azure%20Blob%20Storage%20411/Secure/Sitecore.BlobStorageProvider%204.1.1%20rev.%2000677.scwdp.zip) | Blob Storage Package for XM Scaled, XP Scaled, XM Developer, XP Developer. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_501/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_501/index.md deleted file mode 100644 index 278f0b218..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_501/index.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: "Sitecore Azure Blob Storage 5.0.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_501 ---- - -Sitecore Blob Storage allows customer to store large number of media items with more efficient hosting cost and greater performance by removing large blobs from SQL Databases and move them to blob storage. - -Sitecore Azure Blob Storage 5.0.1 is compatible with Sitecore Experience Platform 10.3. - -See [all available versions here](/downloads/Sitecore_Azure_Blob_Storage). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Package for XM and XP](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Blob%20Storage/1x/Sitecore%20Azure%20Blob%20Storage%20501/Secure/Sitecore.BlobStorageProvider%205.0.1%20rev.%2000839.scwdp.zip) | Blob Storage Package for XM Scaled, XP Scaled, XM Developer, XP Developer. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_600/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_600/index.md deleted file mode 100644 index b4df51883..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_600/index.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Sitecore Azure Blob Storage 6.0.0" -description: "" ---- - -Sitecore Blob Storage allows customer to store large number of media items with more efficient hosting cost and greater performance by removing large blobs from SQL Databases and move them to blob storage. - -Sitecore Azure Blob Storage 6.0.0 is compatible with Sitecore Experience Platform 10.4. - -See [all available versions here](/downloads/Sitecore_Azure_Blob_Storage). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Package for XM and XP](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Blob%20Storage/1x/Sitecore%20Azure%20Blob%20Storage%20600/Sitecore.BlobStorageProvider%206.0.0%20rev.%2000913.scwdp.zip) | Blob Storage Package for XM Scaled, XP Scaled, XM Developer, XP Developer. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_100/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_100/Release_Notes.md deleted file mode 100644 index 15433a782..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_100/Release_Notes.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_100/Release_Notes ---- - -**December 2016 - released Sitecore Azure Tookit 1.0 rev. 161125** - -This is initial release of Sitecore Azure Toolkit. - -Sitecore Azure Toolkit simplifies the tasks of packaging and deploying Sitecore solutions for Microsoft Azure AppService. - -## Features: - -- Tools and resources to transform a Sitecore instance into role-specific packages for Content Delivery, Content Management, Processing and Reporting roles in XM and XP environments. -- Role configuration, security configuration and Azure services integration out of the box. -- Provision an Azure resource group with the required resources and deploy Sitecore application packages to Azure AppService. -- Limited support for converting Sitecore Installer packages into MSDeploy format for later deployment to Azure AppService (files only). - -## Notes: - -- Provisioning templates for Azure Resource Manager are available in a [Github repository](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates). -- Pre-built packages for use with provisioning templates are located on the download page for [Sitecore Experience Platform 8.2 Update-1](/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update1). \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_100/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_100/index.md deleted file mode 100644 index 9e0ca5cb2..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_100/index.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 1.0 rev. 161125" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_100.aspx ---- - -Sitecore Azure Toolkit allows customers to package and deploy Sitecore solutions to Microsoft Azure and provides out of the box integration with Azure services such as Application Insights, Redis Cache Service and Azure Search. - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/1x/Sitecore%20Azure%20Toolkit%20100/Secure/Sitecore%20Azure%20Toolkit%201.0%20rev.%20161125.zip) | Download this package to install Sitecore Azure Toolkit 1.0 rev. 161125. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_100/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.net:443/en/Products/Cloud/82/Working_with_Sitecore_Azure) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_103/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_103/Release_Notes.md deleted file mode 100644 index ee2ea1508..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_103/Release_Notes.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_103/Release_Notes ---- - -**April 2017 - released Sitecore Azure Tookit 1.0 rev. 170323** - -This a maintenance release of Sitecore Azure Toolkit. - -## Changes - -- An issue was resolved where Start-SitecoreAzurePackaging commandlet would generate wrong DACPAC files for Web and Reporting databases (#145406). -- Added resources for Sitecore Experience Platform 8.2 Update-2 and Update-3. - -## Notes - -- Provisioning templates for Azure Resource Manager are available in a [Github repository](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates). -- Pre-built packages for use with provisioning templates are located on the download page for [Sitecore Experience Platform 8.2](/downloads/Sitecore_Experience_Platform/82). \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_103/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_103/index.md deleted file mode 100644 index 8eb8ec278..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_103/index.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 1.0 rev. 170323" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_103.aspx ---- - -Sitecore Azure Toolkit allows customers to package and deploy Sitecore solutions to Microsoft Azure and provides out of the box integration with Azure services such as Application Insights, Redis Cache Service and Azure Search. - -This maintenance release fixes an issue with packaging Sitecore solutions and adds support for Sitecore 8.2 Update-2 and Update-3. - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/1x/Sitecore%20Azure%20Toolkit%20103/Secure/Sitecore%20Azure%20Toolkit%201.0%20rev%20170323.zip) | Download this package to install Sitecore Azure Toolkit 1.0 rev. 170323. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_103/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.net:443/en/Products/Cloud/82/Working_with_Sitecore_Azure) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_110/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_110/Release_Notes.md deleted file mode 100644 index f41822803..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_110/Release_Notes.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_110/Release_Notes ---- - -**May 2017 - released Sitecore Azure Tookit 1.1 rev. 170509** - -This is a feature release of Sitecore Azure Toolkit. - -## New features - -- Separate infrastructure and application deployment ARM templates. -- Support for installing Sitecore modules, including: - - Support for converting Sitecore packages into WDP packages. - - Support for installing modules as part of ARM provisioning call. - - Sample ARM templates for various Sitecore environment configurations. -- Support for Web Forms For Marketers 8.2 Update-3 with Sitecore Experience Platform 8.2 Update-3 - - Web Deploy packages are available on Web Forms for Marketers module [download page](/downloads/Web_Forms_For_Marketers/82/Web_Forms_For_Marketers_82_Update3). - - ARM templates are available on [Github](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates/tree/master/WFFM%208.2.3). - - Instructions to add Web Forms for Marketers to your deployment are available on [Documentation site](https://doc.sitecore.net/cloud/working_with_sitecore_azure). - -## Notes - -- Provisioning templates for Azure Resource Manager are available in a [Github repository](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates). -- Pre-built packages for use with provisioning templates are located on the download page for [Sitecore Experience Platform 8.2](/downloads/Sitecore_Experience_Platform/82). \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_110/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_110/index.md deleted file mode 100644 index b7a937420..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_110/index.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 1.1 rev. 170509" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_110.aspx ---- - -Sitecore Azure Toolkit allows customers to package and deploy Sitecore solutions to Microsoft Azure and provides out of the box integration with Azure services such as Application Insights, Redis Cache Service and Azure Search. - -This feature release adds support for separate application and infrastructure deployments, packaging and installing modules and installing Web Forms for Marketers on Azure App Service. - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/1x/Sitecore%20Azure%20Toolkit%20110/Secure/Sitecore%20Azure%20Toolkit%201.1%20rev%20170509.zip) | Download this package to install Sitecore Azure Toolkit 1.1 rev. 170509. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_110/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.net:443/en/Products/Cloud/82/Working_with_Sitecore_Azure) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | - | [Web Forms for Marketers](/downloads/Web_Forms_For_Marketers/82) | Web Forms for Marketers download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-3. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_111/Release_notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_111/Release_notes.md deleted file mode 100644 index ef932821f..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_111/Release_notes.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: "Release notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_111/Release_notes ---- - -**September 2017 - released Sitecore Azure Tookit 1.1 rev. 170804** - -This a maintenance release of Sitecore Azure Toolkit. - -## Changes - -- Added resources for Sitecore Experience Platform 8.2 Update-4 and Update-5. -- Support for Email Experience Manager 3.5 with Sitecore Experience Platform 8.2 Update-5 - - Web Deploy packages are available on Email Experience Manager module [download page](/downloads/Email_Experience_Manager/35/Email_Experience_Manager_35_Initial_Release). - - ARM templates are available on [Github](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates/tree/master/EXM%203.5.0). - - Instructions to add Email Experience Manager to your deployment are available on [Documentation site](https://doc.sitecore.net/Cloud/82/Working%20with%20Sitecore%20Azure). - -## Notes - -- Provisioning templates for Azure Resource Manager are available in a [Github repository](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates). -- Pre-built packages for use with provisioning templates are located on the download page for [Sitecore Experience Platform 8.2](/downloads/Sitecore_Experience_Platform/82). \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_111/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_111/index.md deleted file mode 100644 index 6864dfcaf..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_111/index.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 1.1 rev. 170804" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_111.aspx ---- - -Sitecore Azure Toolkit allows customers to package and deploy Sitecore solutions to Microsoft Azure and provides out of the box integration with Azure services such as Application Insights, Redis Cache Service and Azure Search. - -This maintenance release adds support for Sitecore Experience Platform 8.2 Update 4 and 8.2 Update 5, and installing Email Experience Manager module on Azure App Service. - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/1x/Sitecore%20Azure%20Toolkit%20111/Secure/Sitecore%20Azure%20Toolkit%201.1%20rev%20170804.zip) | Download this package to install Sitecore Azure Toolkit 1.1 rev. 170804. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_111/Release_notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.net:443/en/Products/Cloud/82/Working_with_Sitecore_Azure) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_200/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_200/Release_Notes.md deleted file mode 100644 index d2016b728..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_200/Release_Notes.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_200/Release_Notes ---- - -**October 2017 – released Sitecore Azure Toolkit 2.0 rev. 171010** - -## New features/improvements - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | `Parameters.xml` now controls the order of SQL and DacFX providers that are defined in the manifest (archive.xml). The IIS Application provider is always added at the end of the manifest. ​ | | | - | ​There is now improved error logging and debug information tracking. | | | - | For the SXA module, long SQL scripts cause an out of memory exception. | | 175465 | - | ​Azure Toolkit 2.0 includes support for Web Forms for Marketers 9.0. | | | - | ​Azure Toolkit 2.0 is compatible with Sitecore Experience Platform 9.0. | | | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_200/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_200/index.md deleted file mode 100644 index 3caa15635..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_200/index.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.0 Initial Release" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_200.aspx ---- - -This page contains all the resources for Sitecore Azure Toolkit 2.0 rev. 171010 (Initial Release). - -Sitecore Azure Toolkit allows customers to package and deploy Sitecore solutions to Microsoft Azure and provides out of the box integration with Azure services such as Application Insights, Redis Cache Service and Azure Search. - -This maintenance release adds support for Sitecore Experience Platform 9.0, Web Forms for Marketers 9.0 and fixes an issue with packaging Sitecore Experience Accelerator module. - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Azure%20Toolkit%202.0.0%20rev.171010.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_200/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.net:443/en/Products/Cloud/82/Working_with_Sitecore_Azure) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.net:443/en/Products/Sitecore_Experience_Platform/901/Setting_up_and_maintaining/Sitecore_on_Azure/Analytics/Configure_Sitecore_Power_BI_Health_Reports) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_201/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_201/Release_Notes.md deleted file mode 100644 index 1c2344941..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_201/Release_Notes.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_201/Release_Notes ---- - -**January 2018 – released Sitecore Azure Toolkit 2.0.1** - -## New features/improvements - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​Azure Toolkit 2.0.1 is compatible with Web Forms for Marketers 9.0.1. | | | - | ​Azure Toolkit 2.0.1 is compatible with Sitecore Experience Platform 9.0.1. | | | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_201/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_201/index.md deleted file mode 100644 index 9ddecea00..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_201/index.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.0 Update-1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_201.aspx ---- - -This page contains all the resources for Sitecore Azure Toolkit 2.0 rev. 171218 (Update-1). - -Sitecore Azure Toolkit allows customers to package and deploy Sitecore solutions to Microsoft Azure and provides out of the box integration with Azure services such as Application Insights, Redis Cache Service and Azure Search. - -This maintenance release adds support for Sitecore Experience Platform 9.0, Web Forms for Marketers 9.0 and fixes an issue with packaging Sitecore Experience Accelerator module. - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20201/Secure/Sitecore%20Azure%20Toolkit%202.0.1%20rev.%20171218.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_201/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.net:443/en/Products/Cloud/82/Working_with_Sitecore_Azure) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.net:443/en/Products/Sitecore_Experience_Platform/901/Setting_up_and_maintaining/Sitecore_on_Azure/Analytics/Configure_Sitecore_Power_BI_Health_Reports) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_202/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_202/Release_Notes.md deleted file mode 100644 index b006bdc26..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_202/Release_Notes.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_202/Release_Notes ---- - -**February 2018 – released Sitecore Azure Toolkit 2.0.2** - -## New features/improvements - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​Azure Toolkit 2.0.2 is compatible with Sitecore Experience Commerce 9.0. | | | - | ​​In the Update package item fields, content that should be encoded is decoded. | | 203042 | - | The data folder does not resolve correctly it is relative | 499888 | 200119 | - | The Website folder not found exception appears when the Path parameter points to the website root folder.​ | 499888, 498853 | 200117 | - | Impossible to build WDP from existing site on top of SXP 9.0 because of hardcoded database names.​​ | 499888 | 200126 | - | Web indexes are not available for index rebuild on CM role. | 495819, 499125 | 194495 | - | README.txt contains outdated information. | 500277 | 203159 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_202/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_202/index.md deleted file mode 100644 index 298218ad7..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_202/index.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.0 Update-2" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_202.aspx ---- - -This page contains all the resources for Sitecore Azure Toolkit 2.0 rev. 180220 (Update-2). - -Sitecore Azure Toolkit allows customers to package and deploy Sitecore solutions to Microsoft Azure and provides out of the box integration with Azure services such as Application Insights, Redis Cache Service and Azure Search. - -This maintenance release adds support for Sitecore Experience Commerce 9.0 and fixes an issue with packaging existing sites. - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20202/Secure/Sitecore%20Azure%20Toolkit%202.0.2%20rev.%20180220.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_202/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.net:443/en/Products/Cloud/82/Working_with_Sitecore_Azure) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.net:443/en/Products/Sitecore_Experience_Platform/901/Setting_up_and_maintaining/Sitecore_on_Azure/Analytics/Configure_Sitecore_Power_BI_Health_Reports) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_203/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_203/Release_Notes.md deleted file mode 100644 index ab123cc51..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_203/Release_Notes.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_203/Release_Notes ---- - -**January 2018 – released Sitecore Azure Toolkit 2.0.3 (rev. 180328)** - -## New features/improvements - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​Azure Toolkit 2.0.3 is compatible with Sitecore Experience Platform 8.2.7.​ | | | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​​The platform resources for packaging SXP 8.2.x are aligned with the platform configuration spreadsheets. | | 166214 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_203/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_203/index.md deleted file mode 100644 index 7fa539422..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_203/index.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.0 Update-3" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_203.aspx ---- - -This page contains all the resources for Sitecore Azure Toolkit 2.0 rev. 180328 (Update-3). - -Sitecore Azure Toolkit allows customers to package and deploy Sitecore solutions to Microsoft Azure and provides out of the box integration with Azure services such as Application Insights, Redis Cache Service and Azure Search. - -This maintenance release adds support for Sitecore Experience Commerce 9.0 and fixes an issue with packaging existing sites. - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20203/Secure/Sitecore%20Azure%20Toolkit%202.0.3%20rev.%20180328.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_203/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.net:443/en/Products/Cloud/82/Working_with_Sitecore_Azure) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.net:443/en/Products/Sitecore_Experience_Platform/901/Setting_up_and_maintaining/Sitecore_on_Azure/Analytics/Configure_Sitecore_Power_BI_Health_Reports) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_204/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_204/Release_Notes.md deleted file mode 100644 index 8964bcee3..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_204/Release_Notes.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_204/Release_Notes ---- - -**June 2018 – released Sitecore Azure Toolkit 2.0.4 (rev. 180605)** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​Resource group names are now validated according to Microsoft's naming rules for Azure resources​. | | 211140 | - | ​​​Azure Toolkit 2.0.4 is compatible with Sitecore Experience Platform 9.0.2.​​ | | | - | ​​​When you use the Sitecore Azure Toolkit to deploy the Sitecore Platform, you can easily integrate Solr and use it as your search provider. | 505710, 482759, 489408 | 202068, 202070 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_204/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_204/index.md deleted file mode 100644 index fbc83a9ae..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_204/index.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.0 Update-4" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_204.aspx ---- - -This page contains all the resources for Sitecore Azure Toolkit 2.0 rev. 180605 (Update-4). - -Sitecore Azure Toolkit allows customers to package and deploy Sitecore solutions to Microsoft Azure and provides out of the box integration with Azure services such as Application Insights, Redis Cache Service and Azure Search. - -This maintenance release adds support for Sitecore Experience Commerce 9.0 and fixes an issue with packaging existing sites. - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20204/Secure/Sitecore%20Azure%20Toolkit%202.0.4%20rev.%20180605.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_204/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.net:443/en/Products/Cloud/82/Working_with_Sitecore_Azure) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.net:443/en/Products/Sitecore_Experience_Platform/901/Setting_up_and_maintaining/Sitecore_on_Azure/Analytics/Configure_Sitecore_Power_BI_Health_Reports) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_210/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_210/Release_Notes.md deleted file mode 100644 index d08969b5d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_210/Release_Notes.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_210/Release_Notes ---- - -**November 2018 – released Sitecore Azure Toolkit 2.1.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​​​When you prepare WDP packages from on-prem Sitecore instances, you can use the credentials of the current Windows account to package the Sitecore databases instead of the accounts specified in the connection strings​. | | 224601 | - | You can now package and deploy WDPs created on your local Sitecore solution that was installed with SIF. ​​On-prem service accounts can be overwritten with accounts defined in the ARM templates. ​​ | | 224492 | - | You can use the `ConvertTo-SCModuleWebDeployPackage` and `Update-SCWebDeployPackage` PowerShell commands to disable the `SqlDatabaseOptions` setting and deploy the same module WDP package to an on-prem and to a cloud instance of Sitecore. | | 255994 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_210/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_210/index.md deleted file mode 100644 index e5e672840..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_210/index.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.1.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_210.aspx ---- - -This page contains all the resources for Sitecore Azure Toolkit 2.1.0. - -Sitecore Azure Toolkit allows customers to package and deploy Sitecore solutions to Microsoft Azure and provides out of the box integration with Azure services such as Application Insights, Redis Cache Service and Azure Search. - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20210/Secure/Sitecore%20Azure%20Toolkit%202.1.0%20rev.%20181023.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_210/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/sat/20/sitecore-azure-toolkit/en/index-en.html) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.com/developers/91/sitecore-experience-management/en/configure-sitecore-power-bi-health-reports.html) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_220/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_220/Release_Notes.md deleted file mode 100644 index 7abb2ca70..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_220/Release_Notes.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_220/Release_Notes ---- - -**April 2019 – released Sitecore Azure Toolkit 2.2.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​​​​Azure Toolkit 2.2.0 is compatible with Sitecore Experience Platform 9.1.1.​​ | | 311440 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_220/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_220/index.md deleted file mode 100644 index 7368003b0..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_220/index.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.2.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_220.aspx ---- - -This page contains all the resources for Sitecore Azure Toolkit 2.2.0. - -Sitecore Azure Toolkit allows customers to package and deploy Sitecore solutions to Microsoft Azure and provides out of the box integration with Azure services such as Application Insights, Redis Cache Service and Azure Search. - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20220/Secure/Sitecore%20Azure%20Toolkit%202.2.0%20rev.%20190305.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_220/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/sat/20/sitecore-azure-toolkit/en/index-en.html) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.com/developers/91/sitecore-experience-management/en/configure-sitecore-power-bi-health-reports.html) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_230/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_230/Release_Notes.md deleted file mode 100644 index c47484d30..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_230/Release_Notes.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_230/Release_Notes ---- - -**July 2019 – released Sitecore Azure Toolkit 2.3.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​​​​​​​Azure Toolkit 2.3.0 is compatible with Sitecore Experience Platform 9.2.​​0. | | | - -## Resolved Issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​​​​​​​​The generated WDP SQL script does not support non-Latin characters in field values. | | 319631 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_230/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_230/index.md deleted file mode 100644 index 9b27d8032..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_230/index.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.3.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_230.aspx ---- - -This page contains all the resources for Sitecore Azure Toolkit 2.3.0. - -Sitecore Azure Toolkit allows customers to package and deploy Sitecore solutions to Microsoft Azure and provides out of the box integration with Azure services such as Application Insights, Redis Cache Service and Azure Search. - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20230/Secure/Sitecore%20Azure%20Toolkit%202.3.0%20rev.%20190410.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_230/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/sat/20/sitecore-azure-toolkit/en/index-en.html) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.com/developers/91/sitecore-experience-management/en/configure-sitecore-power-bi-health-reports.html) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_240/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_240/Release_Notes.md deleted file mode 100644 index a1e73b5f4..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_240/Release_Notes.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_240/Release_Notes ---- - -**November 2019 – released Sitecore Azure Toolkit 2.4.0** - -## Resolved Issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​​​​​​​​When you use the `ConvertTo-SCModuleWebDeployPackage` cmdlet​, users are not added to the WDP. | | 331563 | - | ​​​​​​​​There is no XML header in `arche.xml` files.​ | | 349075 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_240/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_240/index.md deleted file mode 100644 index bd7bf99b2..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_240/index.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.4.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_240.aspx ---- - -This page contains all the resources for Sitecore Azure Toolkit 2.4.0. - -Sitecore Azure Toolkit allows customers to package and deploy Sitecore solutions to Microsoft Azure and provides out of the box integration with Azure services such as Application Insights, Redis Cache Service and Azure Search. - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20240/Secure/Sitecore%20Azure%20Toolkit%202.4.0-r02514.1001.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_240/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/sat/20/sitecore-azure-toolkit/en/index-en.html) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.com/developers/91/sitecore-experience-management/en/configure-sitecore-power-bi-health-reports.html) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_250/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_250/Release_Notes.md deleted file mode 100644 index 3bc9ea5bd..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_250/Release_Notes.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_250/Release_Notes ---- - -**August 2020 – released Sitecore Azure Toolkit 2.5.0** - -## New features/improvements: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​​​​​​​​Sitecore Azure Toolkit now uses the Azure module instead of AzureRM. | | 421383 | - | ​​​​​​​​​We have added resources for Sitecore XP 10.0.0 packaging. | | 421919 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_250/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_250/index.md deleted file mode 100644 index 3a5d18c52..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_250/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.5.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_250.aspx ---- - -The Sitecore Azure Toolkit enables customers to package and deploy Sitecore solutions to Microsoft Azure. It provides out-of-box integration with Azure services including Application Insights, Redis Cache Service, and Azure Search.\ -This page contains all the resources for Sitecore Azure Toolkit 2.5.0. - -See [all available versions here](/downloads/Sitecore_Azure_Toolkit). - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20250/Secure/Sitecore%20Azure%20Toolkit%202.5.0-r02519.1061.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_250/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/sat/20/sitecore-azure-toolkit/en/index-en.html) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.com/developers/91/sitecore-experience-management/en/configure-sitecore-power-bi-health-reports.html) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_251/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_251/Release_Notes.md deleted file mode 100644 index 5e5971ebc..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_251/Release_Notes.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_251/Release_Notes ---- - -**December 2020 – released Sitecore Azure Toolkit 2.5.1** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​​​​​​​​S​itecore Azure Toolkit now supports Sitecore XP 10.0.1​. | | 443834 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_251/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_251/index.md deleted file mode 100644 index 73005110f..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_251/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.5.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_251.aspx ---- - -The Sitecore Azure Toolkit enables customers to package and deploy Sitecore solutions to Microsoft Azure. It provides out-of-box integration with Azure services including Application Insights, Redis Cache Service, and Azure Search.\ -This page contains all the resources for Sitecore Azure Toolkit 2.5.1. - -See [all available versions here](/downloads/Sitecore_Azure_Toolkit). - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20251/Secure/Sitecore%20Azure%20Toolkit%202.5.1-r02522.1082.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_251/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/sat/20/sitecore-azure-toolkit/en/index-en.html) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.com/developers/91/sitecore-experience-management/en/configure-sitecore-power-bi-health-reports.html) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_252/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_252/Release_Notes.md deleted file mode 100644 index df06b2844..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_252/Release_Notes.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_252/Release_Notes ---- - -**June 2021 – released Sitecore Azure Toolkit 2.5.2** - -## New features/improvements - - | Context | Description | Ref. ID | - | --- | --- | --- | - | Installation | ​​Azure Toolkit 2.5.2 is compatible with Sitecore Experience Platform 10.0.2. | 482329 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_252/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_252/index.md deleted file mode 100644 index bb912e66d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_252/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.5.2" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_252.aspx ---- - -The Sitecore Azure Toolkit enables customers to package and deploy Sitecore solutions to Microsoft Azure. It provides out-of-box integration with Azure services including Application Insights, Redis Cache Service, and Azure Search.\ -This page contains all the resources for Sitecore Azure Toolkit 2.5.2. - -See [all available versions here](/downloads/Sitecore_Azure_Toolkit). - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20252/Secure/Sitecore%20Azure%20Toolkit%202.5.2-r02524.1219.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_252/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/sat/20/sitecore-azure-toolkit/en/index-en.html) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.com/developers/91/sitecore-experience-management/en/configure-sitecore-power-bi-health-reports.html) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_253/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_253/Release_Notes.md deleted file mode 100644 index a8b6252c9..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_253/Release_Notes.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_253/Release_Notes ---- - -**October 2021 – released Sitecore Azure Toolkit 2.5.3** - -## New features/improvements - - | Context | Description | Ref. ID | - | --- | --- | --- | - | Installation | ​​​Azure Toolkit 2.5.3 is compatible with Sitecore Experience Platform 10.0.3​. | 498344 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_253/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_253/index.md deleted file mode 100644 index 76be3bce9..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_253/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.5.3" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_253.aspx ---- - -The Sitecore Azure Toolkit enables customers to package and deploy Sitecore solutions to Microsoft Azure. It provides out-of-box integration with Azure services including Application Insights, Redis Cache Service, and Azure Search.\ -This page contains all the resources for Sitecore Azure Toolkit 2.5.3. - -See [all available versions here](/downloads/Sitecore_Azure_Toolkit). - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20253/Secure/Sitecore%20Azure%20Toolkit%202.5.3-r02526.1252.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_253/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/sat/20/sitecore-azure-toolkit/en/index-en.html) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.com/developers/91/sitecore-experience-management/en/configure-sitecore-power-bi-health-reports.html) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_260/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_260/Release_Notes.md deleted file mode 100644 index 207d7e850..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_260/Release_Notes.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_260/Release_Notes ---- - -**February 2021 – released Sitecore Azure Toolkit 2.6.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​​​​​​​​​Sitecore update packages that have been converted to Web Deploy packages with Sitecore Azure Toolkit 2.6.0 are only compatible with Sitecore XP 10.1.0. | | | - | ​​​​​​​​​​Sitecore Azure Toolkit can now work with the changes that have been made for `items as resources`. | | 457282 | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​​​​​​​​​The `Set-SitecoreAzureTemplates` cmdlet does not support Support of AZ module. | | 431373 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_260/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_260/index.md deleted file mode 100644 index 915e67e8e..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_260/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.6.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_260.aspx ---- - -The Sitecore Azure Toolkit enables customers to package and deploy Sitecore solutions to Microsoft Azure. It provides out-of-box integration with Azure services including Application Insights, Redis Cache Service, and Azure Search.\ -This page contains all the resources for Sitecore Azure Toolkit 2.6.0. - -See [all available versions here](/downloads/Sitecore_Azure_Toolkit). - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20260/Secure/Sitecore%20Azure%20Toolkit%202.6.0-r02528.1147.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_260/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/sat/26/sitecore-azure-toolkit/en/index-en.html) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.com/developers/91/sitecore-experience-management/en/configure-sitecore-power-bi-health-reports.html) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_261/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_261/Release_Notes.md deleted file mode 100644 index 982f90202..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_261/Release_Notes.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_261/Release_Notes ---- - -**June 2021 – released Sitecore Azure Toolkit 2.6.1** - -## New features/improvements - - | Description | Ref. ID. | - | --- | --- | - | ​Azure Toolkit 2.6.1 is compatible with Sitecore Experience Platform 10.1.1.​ | 470474 | - | | | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_261/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_261/index.md deleted file mode 100644 index 2b54f0754..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_261/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.6.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_261.aspx ---- - -The Sitecore Azure Toolkit enables customers to package and deploy Sitecore solutions to Microsoft Azure. It provides out-of-box integration with Azure services including Application Insights, Redis Cache Service, and Azure Search.\ -This page contains all the resources for Sitecore Azure Toolkit 2.6.1. - -See [all available versions here](/downloads/Sitecore_Azure_Toolkit). - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20261/Secure/Sitecore%20Azure%20Toolkit%202.6.1-r02533.1198.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_261/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/sat/26/sitecore-azure-toolkit/en/index-en.html) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.com/developers/91/sitecore-experience-management/en/configure-sitecore-power-bi-health-reports.html) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_262/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_262/Release_Notes.md deleted file mode 100644 index 68e736a06..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_262/Release_Notes.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_262/Release_Notes ---- - -**October 2021 – released Sitecore Azure Toolkit 2.6.2** - -## New features/improvements - - | Description | Ref. ID. | - | --- | --- | - | ​​Azure Toolkit 2.6.2 is compatible with Sitecore Experience Platform 10.1.2​.​ | 498338 | - | | | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_262/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_262/index.md deleted file mode 100644 index 930587651..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_262/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.6.2" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_262.aspx ---- - -The Sitecore Azure Toolkit enables customers to package and deploy Sitecore solutions to Microsoft Azure. It provides out-of-box integration with Azure services including Application Insights, Redis Cache Service, and Azure Search.\ -This page contains all the resources for Sitecore Azure Toolkit 2.6.2. - -See [all available versions here](/downloads/Sitecore_Azure_Toolkit). - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20262/Secure/Sitecore%20Azure%20Toolkit%202.6.2-r02535.1255.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_262/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/sat/26/sitecore-azure-toolkit/en/index-en.html) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.com/developers/91/sitecore-experience-management/en/configure-sitecore-power-bi-health-reports.html) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_263/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_263/Release_Notes.md deleted file mode 100644 index 5c6a8b480..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_263/Release_Notes.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_263/Release_Notes ---- - -**September 2023 – released Sitecore Azure Toolkit 2.6.3** - -## New features/improvements - - | Description | Ref. ID. | - | --- | --- | - | ​​Azure Toolkit 2.6.3 is compatible with Sitecore Experience Platform 10.1.3​.​ | 578349 - | - | | | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_263/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_263/index.md deleted file mode 100644 index 1a9398680..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_263/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.6.3" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_263.aspx ---- - -The Sitecore Azure Toolkit enables customers to package and deploy Sitecore solutions to Microsoft Azure. It provides out-of-box integration with Azure services including Application Insights, Redis Cache Service, and Azure Search.\ -This page contains all the resources for Sitecore Azure Toolkit 2.6.3. - -See [all available versions here](/downloads/Sitecore_Azure_Toolkit). - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20263/Secure/Sitecore%20Azure%20Toolkit%202.6.3-r02539.1501.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_263/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/sat/26/sitecore-azure-toolkit/en/index-en.html) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.com/developers/91/sitecore-experience-management/en/configure-sitecore-power-bi-health-reports.html) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_270/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_270/Release_Notes.md deleted file mode 100644 index 14cea3216..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_270/Release_Notes.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_270/Release_Notes ---- - -**November 2021 – released Sitecore Azure Toolkit 2.7.0** - -## New features/improvements - - | Description | ADO no. | - | --- | --- | - | ​​Azure Toolkit 2.7.0 is compatible with Sitecore Experience Platform 10.2.0​.​ | 494772 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_270/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_270/index.md deleted file mode 100644 index addc5fd78..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_270/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.7.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_270.aspx ---- - -The Sitecore Azure Toolkit enables customers to package and deploy Sitecore solutions to Microsoft Azure. It provides out-of-box integration with Azure services including Application Insights, Redis Cache Service, and Azure Search.\ -This page contains all the resources for Sitecore Azure Toolkit 2.7.0. - -See [all available versions here](/downloads/Sitecore_Azure_Toolkit). - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20270/Secure/Sitecore%20Azure%20Toolkit%202.7.0-r02533.1285.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_270/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/sat/27/sitecore-azure-toolkit/en/index-en.html) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.com/developers/91/sitecore-experience-management/en/configure-sitecore-power-bi-health-reports.html) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_271/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_271/Release_Notes.md deleted file mode 100644 index 554d27301..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_271/Release_Notes.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_271/Release_Notes ---- - -**August 2023 – released Sitecore Azure Toolkit 2.7.1** - -## New features/improvements - - | Description | ADO no. | - | --- | --- | - | ​​Azure Toolkit 2.7.1 is compatible with Sitecore Experience Platform 10.2.1​.​ | 578360 - | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_271/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_271/index.md deleted file mode 100644 index 0f7fff9d3..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_271/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.7.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_271.aspx ---- - -The Sitecore Azure Toolkit enables customers to package and deploy Sitecore solutions to Microsoft Azure. It provides out-of-box integration with Azure services including Application Insights, Redis Cache Service, and Azure Search.\ -This page contains all the resources for Sitecore Azure Toolkit 2.7.1. - -See [all available versions here](/downloads/Sitecore_Azure_Toolkit). - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20271/Secure/Sitecore%20Azure%20Toolkit%202.7.1-r02537.1499.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_271/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/sat/27/sitecore-azure-toolkit/en/index-en.html) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.com/developers/91/sitecore-experience-management/en/configure-sitecore-power-bi-health-reports.html) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_280/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_280/Release_Notes.md deleted file mode 100644 index 0b3998b4b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_280/Release_Notes.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_280/Release_Notes ---- - -**December 2022 – released Sitecore Azure Toolkit 2.8.0** - -## New features/improvements - - | Description | ADO no. | - | --- | --- | - | ​​Azure Toolkit 2.8.0 is compatible with Sitecore Experience Platform 10.3.0 | 549541 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_280/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_280/index.md deleted file mode 100644 index abd29a049..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_280/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.8.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_280.aspx ---- - -The Sitecore Azure Toolkit enables customers to package and deploy Sitecore solutions to Microsoft Azure. It provides out-of-box integration with Azure services including Application Insights, Redis Cache Service, and Azure Search.\ -This page contains all the resources for Sitecore Azure Toolkit 2.8.0. - -See [all available versions here](/downloads/Sitecore_Azure_Toolkit). - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20280/Secure/Sitecore%20Azure%20Toolkit%202.8.0-r02542.1366.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_280/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/sat/28/sitecore-azure-toolkit/en/index-en.html) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.com/developers/91/sitecore-experience-management/en/configure-sitecore-power-bi-health-reports.html) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_281/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_281/Release_Notes.md deleted file mode 100644 index 6260b3cf5..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_281/Release_Notes.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_281/Release_Notes ---- - -**August 2023 – released Sitecore Azure Toolkit 2.8.1** - -## New features/improvements - - | Description | ADO no. | - | --- | --- | - | ​​Azure Toolkit 2.8.1 is compatible with Sitecore Experience Platform 10.3.1 | 589194 - | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_281/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_281/index.md deleted file mode 100644 index 99a24e091..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_281/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 2.8.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_281.aspx ---- - -The Sitecore Azure Toolkit enables customers to package and deploy Sitecore solutions to Microsoft Azure. It provides out-of-box integration with Azure services including Application Insights, Redis Cache Service, and Azure Search.\ -This page contains all the resources for Sitecore Azure Toolkit 2.8.1. - -See [all available versions here](/downloads/Sitecore_Azure_Toolkit). - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20281/Secure/Sitecore%20Azure%20Toolkit%202.8.1-r02547.1455.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_281/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/sat/28/sitecore-azure-toolkit/en/index-en.html) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.com/developers/91/sitecore-experience-management/en/configure-sitecore-power-bi-health-reports.html) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/3x/Sitecore_Azure_Toolkit_300/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/3x/Sitecore_Azure_Toolkit_300/Release_Notes.md deleted file mode 100644 index f84c9aa5a..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/3x/Sitecore_Azure_Toolkit_300/Release_Notes.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/3x/Sitecore_Azure_Toolkit_300/Release_Notes ---- - -**November 2023 – released Sitecore Azure Toolkit 3.0.0** - -## New features/improvements - - | Description | ADO no. | - | --- | --- | - | ​​Azure Toolkit 3.0.0 is split into tools and resources where resources became a part of Sitecore Experience Platform releases and are compatible with 9.0.0 and later Platform versions. | 591793 - | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/3x/Sitecore_Azure_Toolkit_300/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/3x/Sitecore_Azure_Toolkit_300/index.md deleted file mode 100644 index 5a9a141fa..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/3x/Sitecore_Azure_Toolkit_300/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Sitecore Azure Toolkit 3.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit/3x/Sitecore_Azure_Toolkit_300.aspx ---- - -The Sitecore Azure Toolkit enables customers to package and deploy Sitecore solutions to Microsoft Azure. It provides out-of-box integration with Azure services including Application Insights, Redis Cache Service, and Azure Search.\ -This page contains all the resources for Sitecore Azure Toolkit 3.0.0. - -See [all available versions here](/downloads/Sitecore_Azure_Toolkit). - -## Download Options - - | Resource | Description | - | --- | --- | - | [Sitecore Azure Toolkit](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/3x/Sitecore%20Azure%20Toolkit%20300/Secure/Sitecore%20Azure%20Toolkit%203.0.0-r02547.1547.zip) | Download this package to install Sitecore Azure Toolkit. This package contains standalone tools and can be unpacked to a local hard drive. Note: This is not a Sitecore Installation Wizard package. | - | [Sitecore Power BI Health Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Azure%20Toolkit/2x/Sitecore%20Azure%20Toolkit%20200/Secure/Sitecore%20Power%20BI%20Health%20Reports.pbit) | Download the Sitecore Power BI Health Reports template file. Use Power BI to view enhanced health metrics associated with your Sitecore solution running on Azure. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Azure_Toolkit/3x/Sitecore_Azure_Toolkit_300/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - -## Links - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.com/developers/sat/30/sitecore-azure-toolkit/en/index-en.html) | Read all the information about Sitecore Azure Toolkit on the Doc site. | - | [Configure Sitecore Power BI Health Reports](https://doc.sitecore.com/developers/91/sitecore-experience-management/en/configure-sitecore-power-bi-health-reports.html) | Read how to configure the Sitecore Power BI Health Reports. | - | [Azure RM Templates](https://github.com/Sitecore/Sitecore-Azure-Quickstart-Templates) | Github repository with Microsoft Azure Resource Manager templates for Sitecore configurations. | - | [Sitecore Experience Platform](/downloads/Sitecore_Experience_Platform) | Sitecore Experience Platform download page contains packages for deploying on Microsoft Azure starting with version 8.2 Update-1. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/index.md deleted file mode 100644 index 90218fb5f..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Azure_Toolkit/index.md +++ /dev/null @@ -1,55 +0,0 @@ ---- -title: "Sitecore Azure Toolkit" -description: "Sitecore Azure Toolkit allows customers to package and deploy Sitecore solutions to Microsoft Azure and provides out of the box integration with Azure services such as Application Insights, Redis Cache Service and Azure Search. Download the latest Sitecore Azure Toolkit toolset: version 3.0.0. It is also possible to use Sitecore Azure Toolkit 3.0.0 with earlier versions of Sitecore XP." -origin: https://dev.sitecore.net/Downloads/Sitecore_Azure_Toolkit.aspx ---- - - - -## Sitecore Azure Toolkit 3.x - - -[Sitecore Azure Toolkit 3.0.0](/downloads/Sitecore_Azure_Toolkit/3x/Sitecore_Azure_Toolkit_300) - - - - - -## Sitecore Azure Toolkit 2.x - - -[Sitecore Azure Toolkit 2.8.1](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_281)\ -[Sitecore Azure Toolkit 2.8.0](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_280)\ -[Sitecore Azure Toolkit 2.7.1](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_271)\ -[Sitecore Azure Toolkit 2.7.0](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_270)\ -[Sitecore Azure Toolkit 2.6.3](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_263)\ -[Sitecore Azure Toolkit 2.6.2](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_262)\ -[Sitecore Azure Toolkit 2.6.1](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_261)\ -[Sitecore Azure Toolkit 2.6.0](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_260)\ -[Sitecore Azure Toolkit 2.5.3](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_253)\ -[Sitecore Azure Toolkit 2.5.2](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_252)\ -[Sitecore Azure Toolkit 2.5.1](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_251)\ -[Sitecore Azure Toolkit 2.5.0](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_250)\ -[Sitecore Azure Toolkit 2.4.0](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_240)\ -[Sitecore Azure Toolkit 2.3.0](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_230)\ -[Sitecore Azure Toolkit 2.2.0](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_220)\ -[Sitecore Azure Toolkit 2.1.0](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_210)\ -[Sitecore Azure Toolkit 2.0 Update-4](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_204)\ -[Sitecore Azure Toolkit 2.0 Update-3](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_203)\ -[Sitecore Azure Toolkit 2.0 Update-2](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_202)\ -[Sitecore Azure Toolkit 2.0 Update-1](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_201)\ -[Sitecore Azure Toolkit 2.0 Initial Release](/downloads/Sitecore_Azure_Toolkit/2x/Sitecore_Azure_Toolkit_200) - - - - - -## Sitecore Azure Toolkit 1.x - - -[Sitecore Azure Toolkit 1.1 rev. 170804](/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_111)\ -[Sitecore Azure Toolkit 1.1 rev. 170509](/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_110)\ -[Sitecore Azure Toolkit 1.0 rev. 170323](/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_103)\ -[Sitecore Azure Toolkit 1.0 rev. 161125](/downloads/Sitecore_Azure_Toolkit/1x/Sitecore_Azure_Toolkit_100) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/2x/Sitecore_CLI_200/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/2x/Sitecore_CLI_200/index.md deleted file mode 100644 index 1f8d1f0f3..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/2x/Sitecore_CLI_200/index.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: "Sitecore CLI 2.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/2x/Sitecore_CLI_200 ---- - -The Sitecore CLI provides an entry point for interactive and automated command-line interaction with a Sitecore instance, including commands for pulling and synchronizing serialized Sitecore items. - - - - Please note that extensions/customizations to the CLI and Sitecore Management Services module are unsupported. The CLI and module are intended to be used as-is. Please submit feature requests via the Sitecore support portal. - - - - - This version of Sitecore CLI is compatible with Sitecore 10.0. - - - - - Sitecore encourages customers to always install latest update of a given version to ensure latest fixes are included in their solution. See [all available versions here](/downloads/Sitecore_CLI). - - - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Management Services Module ZIP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/2x/Sitecore%20CLI%20200/Secure/Sitecore.ManagementServices%202.0.0-r00202.zip) | Download the Sitecore Management Services module required for the Sitecore CLI. | - | [Sitecore Management Services Module WDP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/2x/Sitecore%20CLI%20200/Secure/Sitecore.ManagementServices%202.0.0-r00202.scwdp.zip) | Download WebDeploy package for install of the Sitecore Management Services module on Azure App Services. | - | [Sitecore Management Services Module SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/2x/Sitecore%20CLI%20200/Secure/Sitecore.ManagementServices.SIF.Templates.zip) | Download Sitecore Installation Framework script and configuration for on-prem install of the Sitecore Management Services module. | - | [Sitecore CLI NuGet Package](https://sitecore.myget.org/feed/sc-packages/package/nuget/Sitecore.Cli) | The "sc-packages" NuGet feed contains the Sitecore CLI "dotnet tool". See documentation for installation details. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Sitecore CLI Documentation](https://doc.sitecore.com/developers/100/developer-tools/en/sitecore-content-serialization.html) | Official documentation for the Sitecore CLI. | - | [Container installation reference](https://containers.doc.sitecore.com/docs/module-reference#sitecore-management-services) | Instructions for Sitecore Management Services module installation via Dockerfile. | - | [Known issues](https://kb.sitecore.net/articles/661975) | Known issues for this release in the Sitecore Knowledge Base. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/3x/Sitecore_CLI_300/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/3x/Sitecore_CLI_300/index.md deleted file mode 100644 index 023ead5de..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/3x/Sitecore_CLI_300/index.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: "Sitecore CLI 3.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/3x/Sitecore_CLI_300 ---- - -The Sitecore CLI provides an entry point for interactive and automated command-line interaction with a Sitecore instance, including commands for pulling and synchronizing serialized Sitecore items. - - - - Please note that extensions/customizations to the CLI and Sitecore Management Services module are unsupported. The CLI and module are intended to be used as-is. Please submit feature requests via the Sitecore support portal. - - - - - This version of Sitecore CLI is compatible with Sitecore 10.1. - - - - - Sitecore encourages customers to always install latest update of a given version to ensure latest fixes are included in their solution. See [all available versions here](/downloads/Sitecore_CLI). - - - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Management Services Module ZIP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/3x/Sitecore%20CLI%20300/Secure/Sitecore%20ManagementServices%203.0.0-r00263.1.zip) | Download the Sitecore Management Services module required for the Sitecore CLI. | - | [Sitecore Management Services Module WDP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/3x/Sitecore%20CLI%20300/Secure/Sitecore.ManagementServices%203.0.0-r00263.1.scwdp.zip) | Download WebDeploy package for install of the Sitecore Management Services module on Azure App Services. | - | [Sitecore Management Services Module SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/3x/Sitecore%20CLI%20300/Secure/Sitecore.ManagementServices.SIF.Templates.zip) | Download Sitecore Installation Framework script and configuration for on-prem install of the Sitecore Management Services module. | - | [Sitecore CLI NuGet Package](https://sitecore.myget.org/feed/sc-packages/package/nuget/Sitecore.Cli) | The "sc-packages" NuGet feed contains the Sitecore CLI "dotnet tool". See documentation for installation details. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_CLI/3x/Sitecore_CLI_300/Release_Notes) | A list of features and improvements that have been implemented in this release. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Sitecore CLI Documentation](https://doc.sitecore.com/developers/101/developer-tools/en/sitecore-command-line-interface.html) | Official documentation for the Sitecore CLI. | - | [Container installation reference](https://doc.sitecore.com/developers/101/developer-tools/en/sitecore-module-reference.html#sitecore-management-services) | Instructions for Sitecore Management Services module installation via Dockerfile. | - | [Known issues](https://kb.sitecore.net/articles/545609) | Known issues for this release in the Sitecore Knowledge Base. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_400/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_400/index.md deleted file mode 100644 index 812c88936..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_400/index.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: "Sitecore CLI 4.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/4x/Sitecore_CLI_400 ---- - -The Sitecore CLI provides an entry point for interactive and automated command-line interaction with a Sitecore instance, including commands for pulling and synchronizing serialized Sitecore items. - - - - Please note that extensions/customizations to the CLI and Sitecore Management Services module are unsupported. The CLI and module are intended to be used as-is. Please submit feature requests via the Sitecore support portal. - - - - - This version of Sitecore CLI is compatible with Sitecore 10.1 and 10.2. - - - - - Sitecore encourages customers to always install latest update of a given version to ensure latest fixes are included in their solution. See [all available versions here](/downloads/Sitecore_CLI). - - - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Management Services Module ZIP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/4x/Sitecore%20CLI%20400/Secure/Sitecore%20ManagementServices%204.0.0%20rev.%2000411.zip) | Download the Sitecore Management Services module required for the Sitecore CLI. | - | [Sitecore Management Services Module WDP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/4x/Sitecore%20CLI%20400/Secure/Sitecore.ManagementServices%204.0.0%20rev.%2000411.scwdp.zip) | Download WebDeploy package for install of the Sitecore Management Services module on Azure App Services. | - | [Sitecore Management Services Module SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/4x/Sitecore%20CLI%20400/Secure/Sitecore.ManagementServices.SIF.Templates%204.0.0%20rev.%2000411.zip) | Download Sitecore Installation Framework script and configuration for on-prem install of the Sitecore Management Services module. | - | [Sitecore CLI NuGet Package](https://sitecore.myget.org/feed/sc-packages/package/nuget/Sitecore.Cli) | The "sc-packages" NuGet feed contains the Sitecore CLI "dotnet tool". See documentation for installation details. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_CLI/4x/Sitecore_CLI_400/Release_Notes) | A list of features and improvements that have been implemented in this release. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Sitecore CLI Documentation](https://doc.sitecore.com/developers/101/developer-tools/en/sitecore-command-line-interface.html) | Official documentation for the Sitecore CLI. | - | [Container installation reference](https://doc.sitecore.com/developers/101/developer-tools/en/sitecore-module-reference.html#sitecore-management-services) | Instructions for Sitecore Management Services module installation via Dockerfile. | - | [Known issues](https://kb.sitecore.net/articles/545609) | Known issues for this release in the Sitecore Knowledge Base. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_401/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_401/Release_Notes.md deleted file mode 100644 index fefc39c83..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_401/Release_Notes.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/4x/Sitecore_CLI_401/Release_Notes ---- - -**November 2021 – released Sitecore CLI 4.0.1** - -## Resolved issues - -The following issues have been fixed: - - | Description | ADO no. | - | --- | --- | - | ​There is a caching issue related to content serialization. | 502324 | - | In the Content Editor, `General Link` fields can be rendered as raw values if they are added to the template during deserialization. | 500529 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_401/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_401/index.md deleted file mode 100644 index 39ec50ead..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_401/index.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: "Sitecore CLI 4.0.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/4x/Sitecore_CLI_401.aspx ---- - -The Sitecore CLI provides an entry point for interactive and automated command-line interaction with a Sitecore instance, including commands for pulling and synchronizing serialized Sitecore items. - - - - Please note that extensions/customizations to the CLI and Sitecore Management Services module are unsupported. The CLI and module are intended to be used as-is. Please submit feature requests via the Sitecore support portal. - - - - - This version of Sitecore CLI is compatible with Sitecore 10.1 and 10.2. - - - - - Sitecore encourages customers to always install latest update of a given version to ensure latest fixes are included in their solution. See [all available versions here](/downloads/Sitecore_CLI). - - - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Management Services Module ZIP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/4x/Sitecore%20CLI%20401/Secure/Sitecore%20ManagementServices%204.0.1%20rev.%2000418.zip) | Download the Sitecore Management Services module required for the Sitecore CLI. | - | [Sitecore Management Services Module WDP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/4x/Sitecore%20CLI%20401/Secure/Sitecore.ManagementServices%204.0.1%20rev.%2000418.scwdp.zip) | Download WebDeploy package for install of the Sitecore Management Services module on Azure App Services. | - | [Sitecore Management Services Module SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/4x/Sitecore%20CLI%20401/Secure/Sitecore.ManagementServices.SIF.Templates%204.0.1%20rev.%2000418.zip) | Download Sitecore Installation Framework script and configuration for on-prem install of the Sitecore Management Services module. | - | [Sitecore CLI NuGet Package](https://sitecore.myget.org/feed/sc-packages/package/nuget/Sitecore.Cli) | The "sc-packages" NuGet feed contains the Sitecore CLI "dotnet tool". See documentation for installation details. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_CLI/4x/Sitecore_CLI_401/Release_Notes) | A list of features and improvements that have been implemented in this release. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Sitecore CLI Documentation](https://doc.sitecore.com/developers/101/developer-tools/en/sitecore-command-line-interface.html) | Official documentation for the Sitecore CLI. | - | [Container installation reference](https://doc.sitecore.com/developers/101/developer-tools/en/sitecore-module-reference.html#sitecore-management-services) | Instructions for Sitecore Management Services module installation via Dockerfile. | - | [Known issues](https://kb.sitecore.net/articles/545609) | Known issues for this release in the Sitecore Knowledge Base. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_410/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_410/Release_Notes.md deleted file mode 100644 index 98d938fa8..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_410/Release_Notes.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/4x/Sitecore_CLI_410/Release_Notes ---- - -**December 2021 – released Sitecore CLI 4.1.0** - -## Highlights - -Sitecore CLI 4.1.0 includes: - -- ​Sitecore CLI now supports the inclusion of serialized roles in an item package. -- A configurable serialization sync strategy has been added for continuation on serialization item errors. -- A new resource packaging sub-command has been added to support the Items as Resources cleanup operation. -- Serialization modules now support tagging. -- The Sitecore Login command now supports the Http protocol. - -## New features/improvements - - | Description | ADO no. | - | --- | --- | - | ​Sitecore CLI now supports the inclusion of serialized roles in an item package.​ | 492591 | - | The new `plugin` sub-command initializes a set of default plugins. | 493622 | - | ​The new `publishing` sub-command lists all the publishing targets. | 494069 | - | A configurable serialization sync strategy has been added for continuation on serialization item errors. | 494345 | - | A new `resource packaging` sub-command has been added to support the Items as Resources cleanup operation.​ | 500753 | - | Serialization modules now support tagging. | 500890 | - | ​The `Sitecore Login` command now supports the Http protocol. | 507626 | - | The `serialization watch` command has been updated with support for continue on item serialization failures. | 510929 | - -## Resolved issues - -The following issues have been fixed: - - | Description | ADO no. | - | --- | --- | - | ​When a schema populate operation fails, the message is not formatted in red. | 498616 | - | CLI outputs the incorrect `path is not included` error when using `ser explain` for items in databases other than the `master` database. | 424643 | - | If two or more modules occupy the same file system path, CLI displays an unhelpful error message. ​ | 464007 | - | The `sitecore init` command outputs the `Plugin Helper couldn't find configuration file` message. | 484865 | - | If an invalid item mapping is included in the serialization module, CLI displays an error instead of a warning.​ | 491524 | - | CLI serialization does not restore Azure Blob storage media after a serialzation push. | 493482 | - | ​If `General Link` fields are added to the template during deserialization, they are rendered as raw values in the Content Editor. | 500529 | - | If you try to pull IAR based items in Sitecore, serialization throws an unhandled exception. | 502958 | - | If a template name starts with a special symbol followed by a lower-case character, the `GraphQLSchemaValidationException` is thrown.​ | 505864 | - | If the `user.json` file does not contain a refresh token, CLI throws an unhandled exception. | 507228 | - | If two or more modules occupy the same file system path, serialization does not display a helpful error message.​ | 508334 | - | CLI serialization does not restore Azure Blob storage media for items that have changed location in the content tree. | 493578 | - | ​If you call the `validate --fix` command with conflicting data in serialized items, serialization throws an unhandled exception. | 499030 | - | If you change a field from shared to not-shared and perform a serialization push to Sitecore, content is not propogated. | 499106 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_410/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_410/index.md deleted file mode 100644 index 80f7d71a8..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_410/index.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: "Sitecore CLI 4.1.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/4x/Sitecore_CLI_410.aspx ---- - -The Sitecore CLI provides an entry point for interactive and automated command-line interaction with a Sitecore instance, including commands for pulling and synchronizing serialized Sitecore items. - - - - Please note that extensions/customizations to the CLI and Sitecore Management Services module are unsupported. The CLI and module are intended to be used as-is. Please submit feature requests via the Sitecore support portal. - - - - - This version of Sitecore CLI is compatible with Sitecore 10.1 and 10.2. - - - - - Sitecore encourages customers to always install latest update of a given version to ensure latest fixes are included in their solution. See [all available versions here](/downloads/Sitecore_CLI). - - - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Management Services Module ZIP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/4x/Sitecore%20CLI%20410/Secure/Sitecore%20ManagementServices%204.1.0%20rev.%2000492.zip) | Download the Sitecore Management Services module required for the Sitecore CLI. | - | [Sitecore Management Services Module WDP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/4x/Sitecore%20CLI%20410/Secure/Sitecore.ManagementServices%204.1.0%20rev.%2000492.scwdp.zip) | Download WebDeploy package for install of the Sitecore Management Services module on Azure App Services. | - | [Sitecore Management Services Module SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/4x/Sitecore%20CLI%20410/Secure/Sitecore.ManagementServices.SIF.Templates%204.1.0%20rev.%2000492.zip) | Download Sitecore Installation Framework script and configuration for on-prem install of the Sitecore Management Services module. | - | [Sitecore CLI NuGet Package](https://sitecore.myget.org/feed/sc-packages/package/nuget/Sitecore.Cli) | The "sc-packages" NuGet feed contains the Sitecore CLI "dotnet tool". See documentation for installation details. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_CLI/4x/Sitecore_CLI_410/Release_Notes) | A list of features and improvements that have been implemented in this release. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Sitecore CLI Documentation](https://doc.sitecore.com/developers/102/developer-tools/en/sitecore-command-line-interface.html) | Official documentation for the Sitecore CLI. | - | [Container installation reference](https://doc.sitecore.com/developers/102/developer-tools/en/sitecore-module-reference.html#sitecore-management-services) | Instructions for Sitecore Management Services module installation via Dockerfile. | - | [Known issues](https://kb.sitecore.net/articles/545609) | Known issues for this release in the Sitecore Knowledge Base. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_411/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_411/Release_Notes.md deleted file mode 100644 index cd74b9c2d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_411/Release_Notes.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/4x/Sitecore_CLI_411/Release_Notes ---- - -**January 2021 – released Sitecore CLI 4.1.1** - -## Resolved issues - -The following issues have been fixed: - - | Description | ADO no. | - | --- | --- | - | ​If you change the template of an item, a CLI Serialization error occurs. | 513298 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_411/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_411/index.md deleted file mode 100644 index 2bda25b53..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_411/index.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: "Sitecore CLI 4.1.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/4x/Sitecore_CLI_411.aspx ---- - -The Sitecore CLI provides an entry point for interactive and automated command-line interaction with a Sitecore instance, including commands for pulling and synchronizing serialized Sitecore items. - - - - Please note that extensions/customizations to the CLI and Sitecore Management Services module are unsupported. The CLI and module are intended to be used as-is. Please submit feature requests via the Sitecore support portal. - - - - - This version of Sitecore CLI is compatible with Sitecore 10.1 and 10.2. - - - - - Sitecore encourages customers to always install latest update of a given version to ensure latest fixes are included in their solution. See [all available versions here](/downloads/Sitecore_CLI). - - - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Management Services Module ZIP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/4x/Sitecore%20CLI%20411/Secure/Sitecore%20ManagementServices%204.1.1%20rev.%2000495.zip) | Download the Sitecore Management Services module required for the Sitecore CLI. | - | [Sitecore Management Services Module WDP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/4x/Sitecore%20CLI%20411/Secure/Sitecore.ManagementServices%204.1.1%20rev.%2000495.scwdp.zip) | Download WebDeploy package for install of the Sitecore Management Services module on Azure App Services. | - | [Sitecore Management Services Module SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/4x/Sitecore%20CLI%20411/Secure/Sitecore.ManagementServices.SIF.Templates%204.1.1%20rev.%2000495.zip) | Download Sitecore Installation Framework script and configuration for on-prem install of the Sitecore Management Services module. | - | [Sitecore CLI NuGet Package](https://sitecore.myget.org/feed/sc-packages/package/nuget/Sitecore.Cli) | The "sc-packages" NuGet feed contains the Sitecore CLI "dotnet tool". See documentation for installation details. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_CLI/4x/Sitecore_CLI_411/Release_Notes) | A list of features and improvements that have been implemented in this release. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Sitecore CLI Documentation](https://doc.sitecore.com/developers/102/developer-tools/en/sitecore-command-line-interface.html) | Official documentation for the Sitecore CLI. | - | [Container installation reference](https://doc.sitecore.com/developers/102/developer-tools/en/sitecore-module-reference.html#sitecore-management-services) | Instructions for Sitecore Management Services module installation via Dockerfile. | - | [Known issues](https://kb.sitecore.net/articles/545609) | Known issues for this release in the Sitecore Knowledge Base. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_420/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_420/Release_Notes.md deleted file mode 100644 index 17cd8b945..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_420/Release_Notes.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/4x/Sitecore_CLI_420/Release_Notes ---- - -**April 2022 – released Sitecore CLI 4.2.0** - -## Resolved issues - -The following issues have been fixed: - - | Description | ADO no. | - | --- | --- | - | ​If you change the template of an item, a CLI Serialization error occurs. | 513298 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_420/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_420/index.md deleted file mode 100644 index 242125231..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_420/index.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: "Sitecore CLI 4.2.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/4x/Sitecore_CLI_420.aspx ---- - -The Sitecore CLI provides an entry point for interactive and automated command-line interaction with a Sitecore instance, including commands for pulling and synchronizing serialized Sitecore items. - - - - Please note that extensions/customizations to the CLI and Sitecore Management Services module are unsupported. The CLI and module are intended to be used as-is. Please submit feature requests via the Sitecore support portal. - - - - - This version of Sitecore CLI is compatible with Sitecore 10.1 and 10.2. - - - - - Sitecore encourages customers to always install latest update of a given version to ensure latest fixes are included in their solution. See [all available versions here](/downloads/Sitecore_CLI). - - - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Management Services Module ZIP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/4x/Sitecore%20CLI%20420/Secure/Sitecore%20ManagementServices%204.2.0%20rev.%2000501.zip) | Download the Sitecore Management Services module required for the Sitecore CLI. | - | [Sitecore Management Services Module WDP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/4x/Sitecore%20CLI%20420/Secure/Sitecore.ManagementServices%204.2.0%20rev.%2000501.scwdp.zip) | Download WebDeploy package for install of the Sitecore Management Services module on Azure App Services. | - | [Sitecore Management Services Module SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/4x/Sitecore%20CLI%20420/Secure/Sitecore.ManagementServices.SIF.Templates%204.2.0%20rev.%2000501.zip) | Download Sitecore Installation Framework script and configuration for on-prem install of the Sitecore Management Services module. | - | [Sitecore CLI NuGet Package](https://sitecore.myget.org/feed/sc-packages/package/nuget/Sitecore.Cli) | The "sc-packages" NuGet feed contains the Sitecore CLI "dotnet tool". See documentation for installation details. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_CLI/4x/Sitecore_CLI_420/Release_Notes) | A list of features and improvements that have been implemented in this release. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Sitecore CLI Documentation](https://doc.sitecore.com/developers/102/developer-tools/en/sitecore-command-line-interface.html) | Official documentation for the Sitecore CLI. | - | [Container installation reference](https://doc.sitecore.com/developers/102/developer-tools/en/sitecore-module-reference.html#sitecore-management-services) | Instructions for Sitecore Management Services module installation via Dockerfile. | - | [Known issues](https://kb.sitecore.net/articles/545609) | Known issues for this release in the Sitecore Knowledge Base. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_421/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_421/Release_Notes.md deleted file mode 100644 index 093f19474..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_421/Release_Notes.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/4x/Sitecore_CLI_421/Release_Notes ---- - -**May 2022 – released Sitecore CLI 4.2.1** - -## Resolved issues - -The following issues have been fixed: - - | Description | ADO no. | - | --- | --- | - | Serialization push does not work if there is no 'en' version. | 526511 | - | ​The "dotnet sitecore ser validate --fix" fails to rename a *.yml file. | 528918 | - | ​Serialized YML files are not removed from the file system after deleting them from database if they fall under the "DescendantsOnly" scope. | 522659 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_421/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_421/index.md deleted file mode 100644 index f3433014e..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/4x/Sitecore_CLI_421/index.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: "Sitecore CLI 4.2.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/4x/Sitecore_CLI_421.aspx ---- - -The Sitecore CLI provides an entry point for interactive and automated command-line interaction with a Sitecore instance, including commands for pulling and synchronizing serialized Sitecore items. - - - - Please note that extensions/customizations to the CLI and Sitecore Management Services module are unsupported. The CLI and module are intended to be used as-is. Please submit feature requests via the Sitecore support portal. - - - - - This version of Sitecore CLI is compatible with Sitecore 10.1 and 10.2. - - - - - Sitecore encourages customers to always install latest update of a given version to ensure latest fixes are included in their solution. See [all available versions here](/downloads/Sitecore_CLI). - - - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Management Services Module ZIP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/4x/Sitecore%20CLI%20421/Secure/Sitecore%20ManagementServices%204.2.1%20rev.%2000505.zip) | Download the Sitecore Management Services module required for the Sitecore CLI. | - | [Sitecore Management Services Module WDP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/4x/Sitecore%20CLI%20421/Secure/Sitecore.ManagementServices%204.2.1%20rev.%2000505.scwdp.zip) | Download WebDeploy package for install of the Sitecore Management Services module on Azure App Services. | - | [Sitecore Management Services Module SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/4x/Sitecore%20CLI%20421/Secure/Sitecore.ManagementServices.SIF.Templates%204.2.1%20rev.%2000505.zip) | Download Sitecore Installation Framework script and configuration for on-prem install of the Sitecore Management Services module. | - | [Sitecore CLI NuGet Package](https://sitecore.myget.org/feed/sc-packages/package/nuget/Sitecore.Cli) | The "sc-packages" NuGet feed contains the Sitecore CLI "dotnet tool". See documentation for installation details. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_CLI/4x/Sitecore_CLI_421/Release_Notes) | A list of features and improvements that have been implemented in this release. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Sitecore CLI Documentation](https://doc.sitecore.com/developers/102/developer-tools/en/sitecore-command-line-interface.html) | Official documentation for the Sitecore CLI. | - | [Container installation reference](https://doc.sitecore.com/developers/102/developer-tools/en/sitecore-module-reference.html#sitecore-management-services) | Instructions for Sitecore Management Services module installation via Dockerfile. | - | [Known issues](https://kb.sitecore.net/articles/545609) | Known issues for this release in the Sitecore Knowledge Base. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/5x/Sitecore_CLI_5125/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/5x/Sitecore_CLI_5125/Release_Notes.md deleted file mode 100644 index b2f172510..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/5x/Sitecore_CLI_5125/Release_Notes.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/5x/Sitecore_CLI_5125/Release_Notes ---- - -**October 2022 – released Sitecore CLI 5.1.25** - -## Highlights - -Sitecore CLI 5.1.25 includes: - -- Sitecore CLI now supports Linux based environments. -- Integrated telemetry will help us improve Cli user experience. -- Integrated version compatibility check will help to prevent issues with unsupported versions of Sitecore Management Services. -- Sitecore Cli is ready for the Sitecore XMCloud. - -## New features/improvements - - | Description | | - | --- | --- | - | ​Added audience suport to OAuth authorization flow.​ | | - | Default publishing target resolving. | | - | Added support for references environments. | | - | Sitecore ExperienceEdge publishing support. | | - -## Resolved issues - -The following issues have been fixed: - - | Description | ADO no. | - | --- | --- | - | The push command of the CLI serialization is not case-sensitive. | 549948 | - | ​Could not locate plugin [[email protected]](/cdn-cgi/l/email-protection). | 540750 | - | The "dotnet sitecore ser validate --fix" fails to rename a *.yml file.​ | 528918 | - | Serialization push does not work if there is no 'en' version.​ | 526511 | - | GraphQL.ExecutionError while executing push command after deleting the modified default item.​ | 522845 | - | Serialized YML files are not removed from the file system after deleting them from database if they fall under the "DescendantsOnly" scope.​ | 522659 | - | NonUniquePathException in CLI when multiple items with the same name are present under different folders.​ | 522517 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/5x/Sitecore_CLI_5125/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/5x/Sitecore_CLI_5125/index.md deleted file mode 100644 index bb36d5c35..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/5x/Sitecore_CLI_5125/index.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: "Sitecore CLI 5.1.25" -description: "" ---- - -The Sitecore CLI provides an entry point for interactive and automated command-line interaction with a Sitecore instance, including commands for pulling and synchronizing serialized Sitecore items.\ -Sitecore CLI 5.1.25 is compatible with Sitecore 10.1, 10.2, 10.3, 10.4, and Sitecore XM Cloud. - -See [all available versions here](/downloads/Sitecore_CLI). - - - - Extensions/customizations to the CLI and Sitecore Management Services module are unsupported. The CLI and module are intended to be used as-is. Please submit feature requests via the Sitecore support portal. - - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Management Services Module ZIP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/5x/Sitecore%20CLI%205125/Secure/Sitecore%20ManagementServices%205.1.25.zip) | Download the Sitecore Management Services module required for the Sitecore CLI. | - | [Sitecore Management Services Module WDP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/5x/Sitecore%20CLI%205125/Secure/Sitecore.ManagementServices%205.1.25.scwdp.zip) | Download WebDeploy package for install of the Sitecore Management Services module on Azure App Services. | - | [Sitecore Management Services Module SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/5x/Sitecore%20CLI%205125/Secure/Sitecore.ManagementServices.SIF.Templates%205.1.25.zip) | Download Sitecore Installation Framework script and configuration for on-prem install of the Sitecore Management Services module. | - | [Sitecore CLI NuGet Package](https://sitecore.myget.org/feed/sc-packages/package/nuget/Sitecore.Cli) | The "sc-packages" NuGet feed contains the Sitecore CLI "dotnet tool". See documentation for installation details. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_CLI/5x/Sitecore_CLI_5125/Release_Notes) | A list of features and improvements that have been implemented in this release. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Sitecore CLI Documentation](https://doc.sitecore.com/developers/102/developer-tools/en/sitecore-command-line-interface.html) | Official documentation for the Sitecore CLI. | - | [Container installation reference](https://doc.sitecore.com/developers/102/developer-tools/en/sitecore-module-reference.html#sitecore-management-services) | Instructions for Sitecore Management Services module installation via Dockerfile. | - | [Known issues](https://kb.sitecore.net/articles/545609) | Known issues for this release in the Sitecore Knowledge Base. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/5x/Sitecore_CLI_52109/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/5x/Sitecore_CLI_52109/Release_Notes.md deleted file mode 100644 index e4b4247dc..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/5x/Sitecore_CLI_52109/Release_Notes.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/5x/Sitecore_CLI_52109/Release_Notes ---- - -**May 2023 – released Sitecore CLI 5.2.109** - -## Highlights - -Sitecore CLI 5.2.109 includes: - -- Sitecore CLI now supports user serialization. -- Context switching command. -- Functional parity for database cleanup plugin. -- Items as Resources plugin improvements. -- Sitecore environment information command. - -## New features/improvements - - | Description | | - | --- | --- | - | Serialization plugin allows to serialize users. | | - | Improved plugin installation experience. | | - | Improved CLI compatibility. | | - -## Resolved issues - -The following issues have been fixed: - - | Description | ADO no. | - | --- | --- | - | Diff command fails with "You are not authorized to perform the task you are attempting" error. | 556905 | - | GraphQL.ExecutionError appears on push operation if there are more versions with no fields (due to exclusion configuration) in YML files than in the DB. | 521783 | - | The version of controller rendering item is not created when the item is retrieved from .dat file. | 523249 | - | Diff command fails with "You are not authorized to perform the task you are attempting" error. | 556905 | - | CLI package sitecore.json does not include excludedFields properly. | 566614 | - | The fields of items created by JSS deploy item process cannot be modified after syncing them with different Sitecore instance using CLI and changing template and they are cleared after reverting changes. | 583113,583253 | - | Sitecore roles that are not included in Sitecore Content Serialization package are removed from Sitecore after installing the package even if the removeOrphansForRoles setting is disabled in CLI project. | 583505,583506 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/5x/Sitecore_CLI_52109/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/5x/Sitecore_CLI_52109/index.md deleted file mode 100644 index ab3833805..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/5x/Sitecore_CLI_52109/index.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: "Sitecore CLI 5.2.109" -description: "" ---- - -The Sitecore CLI provides an entry point for interactive and automated command-line interaction with a Sitecore instance, including commands for pulling and synchronizing serialized Sitecore items.\ -Sitecore CLI 5.2.109 is compatible with Sitecore 10.1, 10.2, 10.3, 10.4, and Sitecore XM Cloud. - -See [all available versions here](/downloads/Sitecore_CLI). - - - - Extensions/customizations to the CLI and Sitecore Management Services module are unsupported. The CLI and module are intended to be used as-is. Please submit feature requests via the Sitecore support portal. - - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Management Services Module ZIP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/5x/Sitecore%20CLI%2052109/Secure/Sitecore%20ManagementServices%205.2.109.zip) | Download the Sitecore Management Services module required for the Sitecore CLI. | - | [Sitecore Management Services Module WDP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/5x/Sitecore%20CLI%2052109/Secure/Sitecore.ManagementServices%205.2.109.scwdp.zip) | Download WebDeploy package for install of the Sitecore Management Services module on Azure App Services. | - | [Sitecore Management Services Module SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/5x/Sitecore%20CLI%2052109/Secure/Sitecore.ManagementServices.SIF.Templates%205.2.109.zip) | Download Sitecore Installation Framework script and configuration for on-prem install of the Sitecore Management Services module. | - | [Sitecore CLI NuGet Package](https://sitecore.myget.org/feed/sc-packages/package/nuget/Sitecore.Cli) | The "sc-packages" NuGet feed contains the Sitecore CLI "dotnet tool". See documentation for installation details. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_CLI/5x/Sitecore_CLI_52109/Release_Notes) | A list of features and improvements that have been implemented in this release. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Sitecore CLI Documentation](https://doc.sitecore.com/developers/103/developer-tools/en/sitecore-command-line-interface.html) | Official documentation for the Sitecore CLI. | - | [Container installation reference](https://doc.sitecore.com/developers/102/developer-tools/en/sitecore-module-reference.html#sitecore-management-services) | Instructions for Sitecore Management Services module installation via Dockerfile. | - | [Known issues](https://kb.sitecore.net/articles/545609) | Known issues for this release in the Sitecore Knowledge Base. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/5x/Sitecore_CLI_52113/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/5x/Sitecore_CLI_52113/Release_Notes.md deleted file mode 100644 index 3e5f82b7d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/5x/Sitecore_CLI_52113/Release_Notes.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_CLI/5x/Sitecore_CLI_52113/Release_Notes ---- - -**June 2023 – released Sitecore CLI 5.2.113** - -## Highlights - -Sitecore CLI 5.2.113 includes: - -- Fixes for Sitecore Cli issues. - -## Resolved issues - -The following issues have been fixed: - - | Description | ADO no. | - | --- | --- | - | The GraphQL type UserType on endpoint /sitecore/api/management cannot be defined by schema provider ContentSchemaProvider because it was already defined in the SerializationSchemaProvider schema provider. | 586731 | - | The role already exists error occurs during pushing two roles that are members of the same role that has custom domain. | 587225 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/5x/Sitecore_CLI_52113/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/5x/Sitecore_CLI_52113/index.md deleted file mode 100644 index 13302a2e2..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_CLI/5x/Sitecore_CLI_52113/index.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: "Sitecore CLI 5.2.113" -description: "" ---- - -The Sitecore CLI provides an entry point for interactive and automated command-line interaction with a Sitecore instance, including commands for pulling and synchronizing serialized Sitecore items.\ -Sitecore CLI 5.2.113 is compatible with Sitecore 10.1, 10.2, 10.3, 10.4, and Sitecore XM Cloud. - -See [all available versions here](/downloads/Sitecore_CLI). - - - - Extensions/customizations to the CLI and Sitecore Management Services module are unsupported. The CLI and module are intended to be used as-is. Please submit feature requests via the Sitecore support portal. - - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Management Services Module ZIP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/5x/Sitecore%20CLI%2052113/Secure/Sitecore%20ManagementServices%205.2.113.zip) | Download the Sitecore Management Services module required for the Sitecore CLI. | - | [Sitecore Management Services Module WDP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/5x/Sitecore%20CLI%2052113/Secure/Sitecore.ManagementServices%205.2.113.scwdp.zip) | Download WebDeploy package for install of the Sitecore Management Services module on Azure App Services. | - | [Sitecore Management Services Module SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20CLI/5x/Sitecore%20CLI%2052113/Secure/Sitecore.ManagementServices.SIF.Templates%205.2.113.zip) | Download Sitecore Installation Framework script and configuration for on-prem install of the Sitecore Management Services module. | - | [Sitecore CLI NuGet Package](https://sitecore.myget.org/feed/sc-packages/package/nuget/Sitecore.Cli) | The "sc-packages" NuGet feed contains the Sitecore CLI "dotnet tool". See documentation for installation details. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_CLI/5x/Sitecore_CLI_52113/Release_Notes) | A list of features and improvements that have been implemented in this release. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Sitecore CLI Documentation](https://doc.sitecore.com/developers/103/developer-tools/en/sitecore-command-line-interface.html) | Official documentation for the Sitecore CLI. | - | [Container installation reference](https://doc.sitecore.com/developers/102/developer-tools/en/sitecore-module-reference.html#sitecore-management-services) | Instructions for Sitecore Management Services module installation via Dockerfile. | - | [Known issues](https://kb.sitecore.net/articles/545609) | Known issues for this release in the Sitecore Knowledge Base. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Codeless_Schema_Extensions/1.0.0/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Codeless_Schema_Extensions/1.0.0/index.md deleted file mode 100644 index 3a2c82e4e..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Codeless_Schema_Extensions/1.0.0/index.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: "Sitecore Codeless Schema Extensions 1.0.0" -description: "" ---- - -The Codeless Schema Extensions module enables users to store custom key-value data as a contact facet in the xDB without needing to deploy new schemas. The saved contact data can be used to provide a personalized digital experience. - -This release is compatible with Sitecore XP 10.2, Sitecore XP 10.3 and Sitecore XP 10.4.\ -See [all available versions here](/downloads/Sitecore_Codeless_Schema_Extensions). - -### Download options - - | Resource | Description | - | --- | --- | - | [SIF deployment package](https://scdp.blob.core.windows.net/downloads/Sitecore_Codeless_Schema_Extensions/1.0.0/Sitecore%20Generic%20Personalization.Deploy%201.0.5.zip) | SIF template files used to install the Sitecore Codeless Schema Extensions module via the Sitecore Installation Framework. | - | [Azure PaaS deployment package](https://scdp.blob.core.windows.net/downloads/Sitecore_Codeless_Schema_Extensions/1.0.0/Sitecore%20Generic%20Personalization.AzureDeploy%201.0.5.zip) | Files used to install the Sitecore Codeless Schema Extensions module via Azure PowerShell. | - | [Container deployment package](https://github.com/Sitecore/container-deployment/releases/tag/scse%2F1.0.5.0005.33) | Files used to install the Sitecore Codeless Schema Extensions module in container environments. | - | [WDPs for XP0 topology](https://scdp.blob.core.windows.net/downloads/Sitecore_Codeless_Schema_Extensions/1.0.0/Sitecore%20Generic%20Personalization%20XP0%20WDPs%201.0.5.zip) | Web deploy packages (WDP) for XP Single (XP0) topology. | - | [WDPs for XP1 topology](https://scdp.blob.core.windows.net/downloads/Sitecore_Codeless_Schema_Extensions/1.0.0/Sitecore%20Generic%20Personalization%20XP1%20WDPs%201.0.5.zip) | Web deploy packages (WDP) for XP Scaled (XP1) topology. | - -### Release information - - | Resource | Description | - | --- | --- | - | [User documentation](https://doc.sitecore.com/xp/en/users/latest/sitecore-experience-platform/create-personalized-experiences-without-needing-help-from-a-developer.html) | A set of conceptual and procedural topics for Sitecore Codeless Schema Extensions users. | - | [OnPrem installation guide](https://scdp.blob.core.windows.net/downloads/Sitecore_Codeless_Schema_Extensions/1.0.0/Install_the_Codeless_Schema_Extensions_module_on-prem.pdf) | Guide describing how to install the Sitecore Codeless Schema Extensions module in an existing Sitecore OnPrem instance. | - | [Azure PaaS installation guide](https://scdp.blob.core.windows.net/downloads/Sitecore_Codeless_Schema_Extensions/1.0.0/Install_the_Codeless_Schema_Extensions_module_on_Azure_PaaS_topologies.pdf) | Guide describing how to install the Sitecore Codeless Schema Extensions module in an existing Sitecore Azure instance. | - | [Container installation guide](https://scdp.blob.core.windows.net/downloads/Sitecore_Codeless_Schema_Extensions/1.0.0/Install_the_Codeless_Schema_Extensions_module_using_Docker.pdf) | Guide describing how to install the Sitecore Codeless Schema Extensions module via Dockerfile. | - | [AKS installation guide](https://scdp.blob.core.windows.net/downloads/Sitecore_Codeless_Schema_Extensions/1.0.0/Install_the_Codeless_Schema_Extensions_module_on_Azure_Kubernetes_Service.pdf) | Guide describing how to install the Sitecore Codeless Schema Extensions module onto Azure Kubernetes Service. | - -### Client translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore_Codeless_Schema_Extensions/1.0.0/Sitecore%20Generic%20Personalization%201.0.5%20(da-DK).zip) | Danish language client translation file. See [instructions](https://developers.sitecore.com/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) on how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore_Codeless_Schema_Extensions/1.0.0/Sitecore%20Generic%20Personalization%201.0.5%20(de-DE).zip) | German language client translation file. See [instructions](https://developers.sitecore.com/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) on how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore_Codeless_Schema_Extensions/1.0.0/Sitecore%20Generic%20Personalization%201.0.5%20(ja-JP).zip) | Japanese language client translation file. See [instructions](https://developers.sitecore.com/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) on how to import a new language into the Sitecore installation. | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore_Codeless_Schema_Extensions/1.0.0/Sitecore%20Generic%20Personalization%201.0.5%20(zh-CN).zip) | Chinese language client translation file. See [instructions](https://developers.sitecore.com/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) on how to import a new language into the Sitecore installation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Codeless_Schema_Extensions/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Codeless_Schema_Extensions/index.md deleted file mode 100644 index 8b51816f0..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Codeless_Schema_Extensions/index.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Sitecore Codeless Schema Extensions" -description: "Code and segmentation rules enabling business users to extend the xConnect schema without requiring code development." ---- - - - -## Sitecore Codeless Schema Extensions - - -[Sitecore Codeless Schema Extensions 1.0.0](/downloads/Sitecore_Codeless_Schema_Extensions/1.0.0) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/100/Sitecore_Experience_Commerce_100/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/100/Sitecore_Experience_Commerce_100/index.md deleted file mode 100644 index 5ddc6ff67..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/100/Sitecore_Experience_Commerce_100/index.md +++ /dev/null @@ -1,75 +0,0 @@ ---- -title: "Sitecore Experience Commerce 10.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/100/Sitecore_Experience_Commerce_100.aspx ---- - -Sitecore Experience Commerce (XC) 10.0 is compatible with Sitecore Experience Platform (XP) 10.0, 10.0 Update-1, 10.0 Update-2, and 10.0 Update-3. Compatibility with XP 10.0 Update-3 requires updating an XC host file for connecting to Identity Server as described in [KB1000801](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1000801). - -For containers deployments retrieve the applicable Sitecore Commerce Containers SDK version from [GitHub](https://github.com/Sitecore/container-deployment/releases) for compatibility with the correct XP update release.  - -Refer to the [Sitecore Experience Commerce Compatibility Table](https://kb.sitecore.net/articles/804595) for the software and version prerequisites. - -Sitecore XC 10.0 adds innovation features including: - -Dynamic Bundles - optional and upgradable products in a bundle -A Free gift with Purchase promotion -A sample Sitecore DAM to Commerce connector - -This release adds a new deployment option based on Docker and Kubernetes. It adds a Sitecore Experience Commerce Software Development Kit (SDK) with example scripts to you help build your production container images. A set of prepared sample images is also provided via the Sitecore public container registry, for preparing a sample Commerce solution deployment. - -Other highlights include: - -Ability to set a promotion priority -Return available promotions on products, from Engine -Recommended products based on purchase history -Promote products based on search boosting rules -Storefront extensibility via Scriban templates -Continued performance enhancements -Framework & 3rd party updates: OData, .NET Standard, .NET Core, Solr, Redis client -Corrective content based on feedback from our customers, partners, and developers - -Return to [all available versions](/downloads/Sitecore_Commerce) - -## Download Options for Sitecore Containers Deployments - - | Resource | Description | - | --- | --- | - | [Sitecore Commerce Containers SDK 1.0.224](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/100/Sitecore%20Experience%20Commerce%20100/Secure/Sitecore.Commerce.Container.SDK.1.0.224.zip) | January 2021: Please go to [GitHub](https://github.com/Sitecore/container-deployment/releases) to retrieve newer versions of this SDK that are updated for compatibility with Microsoft Windows patches.This SDK contains the Dockerfiles, .env files, Docker compose ymls, Kubernetes yamls, and sample scripts to build container images of the Commerce Engine solution. The version 1.0.224 posted here is compatible with SXP 10.0.0 and Microsoft Windows container base images: ltsc2019, SAC 2004, and SAC 20H2. | - | [Sitecore Commerce Containers SDK 1.1.10](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/100/Sitecore%20Experience%20Commerce%20100/Secure/Sitecore.Commerce.Container.SDK.1.1.10.zip) | January 2021: Please go to [GitHub](https://github.com/Sitecore/container-deployment/releases) to retrieve newer versions of this SDK that are updated for compatibility Microsoft Windows patches.This SDK contains the Dockerfiles, .env files, Docker compose ymls, Kubernetes yamls, and sample scripts to build container images of the Commerce Engine solution. The version 1.1.10 posted here is compatible with SXP 10.0.1 and Microsoft Windows container base images: ltsc2019, SAC 2004, and SAC 20H2. | - | [XC Installation Guide for Developer Workstation with Containers](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/100/Sitecore%20Experience%20Commerce%20100/Secure/XC_10.0_Installation_Guide_for_a_Commerce_Developer_Workstation_with_Container-en.pdf) | A guide that lists the requirements and provides step-by-step instructions for installing Sitecore Experience Commerce using sample containers on a developer workstation. | - | [XC Installation Guide for Production Deployments with Kubernetes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/100/Sitecore%20Experience%20Commerce%20100/Secure/XC_10.0_Installation_Guide_for_Production_Deployments_with_Kubernetes-en.pdf) | A guide that lists the requirements and provides step-by-step instructions for installing Sitecore Experience Commerce for a production deployment using Kubernetes. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - | [Sitecore Image Reference](https://containers.doc.sitecore.com/docs/image-reference) | Link to additional information about the images available on the Sitecore Container Registry (SCR), as well as how to use them in your custom solution. | - -## Download Options for Azure App Service Deployments - - | Resource | Description | - | --- | --- | - | [Packages for Azure App Service 2020.08-6.0.238](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/100/Sitecore%20Experience%20Commerce%20100/Secure/Sitecore.Commerce.Azure.2020.08-6.0.238.zip) | The Commerce Web Deploy Packages (WDPs) for deployment to a Microsoft Azure App Service. | - | [XC Installation Guide for Azure App Service](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/100/Sitecore%20Experience%20Commerce%20100/Secure/Sitecore_XC_10_0_Installation_Guide_for_Azure_App_Servi-en.pdf) | A guide that provides step-by-step instructions for deploying Sitecore Experience Commerce 10.0.0 to a Microsoft Azure App Service. | - -## Download Options for On Premises Deployments - - | Resource | Description | - | --- | --- | - | [Packages for On Premises WDP 2020.08-6.0.238](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/100/Sitecore%20Experience%20Commerce%20100/Secure/Sitecore.Commerce.WDP.2020.08-6.0.238.zip) | The Commerce packages and supporting SDKs for on-premise or hosted virtual machine deployments using Web Deploy Packages (WDP). | - | [Packages for Upgrading On Premises Deployments 2020.08-6.0.238](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/100/Sitecore%20Experience%20Commerce%20100/Secure/Sitecore.Commerce.2020.08-6.0.238.zip) | The Commerce packages and supporting software for upgrading existing on premise deployments. | - | [XC Installation Guide for On Premises](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/100/Sitecore%20Experience%20Commerce%20100/Secure/Sitecore_XC_Installation_Guide_for_On-Premises_Solutions.pdf) | A guide that lists the requirements and provides step-by-step instructions for installing Sitecore Experience Commerce in a single-server configuration on-premise or on a hosted virtual machine using Web Deployment Packages (WDP). | - | [Upgrade Guide for XC 9.3 to XC 10.0.0](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/100/Sitecore%20Experience%20Commerce%20100/Secure/Sitecore_XC_Upgrade_Guide_for_9_3_to_10_0.pdf) | A guide that provides step-by-step instructions for upgrading a Sitecore XC 9.3 deployment to Sitecore XC 10.0.0. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/100/Sitecore%20Experience%20Commerce%20100/Non-secure/Sitecore%20XC10.0%20Release%20Notes.pdf) | New features/improvements, resolved issues, breaking changes, known issues. Documentation updates are also listed | - | [Sitecore Documentation](https://doc.sitecore.com/) | Link to the Sitecore Documentation website. | - | [Breaking Change Reports](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/100/Sitecore%20Experience%20Commerce%20100/Secure/XC10.0%20Engine%20Plugin%20Breaking%20Change%20Reports%205.0.150-6.0.197.zip) | A .zip file containing breaking change reports for each Engine plugin, by comparing a recent Sitecore Experience Commerce 10.0 build to 9.3. In particular, the introduction of .NET Standard results in a large number of breaking changes being reported, throughout the layers of function calls.
| - -## Translations - - | Resource | Description | - | --- | --- | - | [Business Tools translations](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/100/Sitecore%20Experience%20Commerce%20100/Secure/BusinessTools.translations.zip) | Danish, German, Japanese language translation files for the Commerce Business Tools. Compatible with Sitecore Commerce Engine Connect 6.0.
[Link to documentation for installing a translation file](https://doc.sitecore.com/developers/100/sitecore-experience-commerce/en/install-a-translation-file-for-the-xc-business-tools.html) | - | [SXA Storefront translations](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/100/Sitecore%20Experience%20Commerce%20100/Secure/SXAStorefront.translations.zip) | Danish, German, Japanese language translation files for the SXA Storefront. Compatible with SXA Storefront 5.0. | - | [Commerce Connect translations](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/100/Sitecore%20Experience%20Commerce%20100/Secure/CommerceConnect.translations.zip) | Danish, German, Japanese language translation files for Commerce Connect. Compatible with Commerce Connect 15.0. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/101/Sitecore_Experience_Commerce_101/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/101/Sitecore_Experience_Commerce_101/index.md deleted file mode 100644 index 26bac176b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/101/Sitecore_Experience_Commerce_101/index.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: "Sitecore Experience Commerce 10.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/101/Sitecore_Experience_Commerce_101.aspx ---- - -Sitecore Experience Commerce (XC) 10.1 is compatible with Sitecore Experience Platform (XP) 10.1, 10.1 Update-1, 10.1 Update-2, and 10.1 Update-3. Compatibility with XP 10.1 Update-2 requires updating an XC host file for connecting to Identity Server as described in [KB1000801](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1000801). - -For containers deployments retrieve the applicable Sitecore Commerce Containers SDK version from [GitHub](https://github.com/Sitecore/container-deployment/releases) for compatibility with the correct XP update release.  - -Sitecore XC 10.1 adds functional enhancements like data archiving of orders-related entities, performance enhancements focusing on optimizing the commerce redis cache, and robustness improvements and corrections.  - -Refer to the [Sitecore Experience Commerce Compatibility Table](https://kb.sitecore.net/articles/804595) for the software and version prerequisites.  - -Return to [all available versions](/downloads/Sitecore_Commerce) - -## Download Options for Sitecore Container Deployments - - | Resource | Description | - | --- | --- | - | [Sitecore Commerce Container SDK](https://github.com/Sitecore/container-deployment/releases) | Link to Sitecore Commerce Container SDK packages on GitHub. The SDK contains the Dockerfiles, .env files, Docker compose ymls, Kubernetes yamls, and sample scripts to build container images of the Commerce Engine solution. | - | [Database Upgrade Scripts for Containers](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/101/Sitecore%20Experience%20Commerce%20101/Secure/Sitecore%20Commerce%20Database%20Upgrade%20Scripts%20for%20Containers.zip) | Database upgrade scripts for upgrading a Sitecore XC 10.0 deployment to Sitecore XC 10.1 for containers. | - | [XC Installation Guide for Developer Workstation with Containers](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/101/Sitecore%20Experience%20Commerce%20101/Secure/XC_10.1_Installation_Guide_for_a_Commerce_Developer_Workstation_with_Container-en.pdf) | A guide that lists the requirements and provides step-by-step instructions for installing Sitecore Experience Commerce using sample containers on a developer workstation. | - | [XC Installation Guide for Production Deployments with Kubernetes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/101/Sitecore%20Experience%20Commerce%20101/Secure/XC_10.1_Installation_Guide_for_Production_Deployments_with_Kubernetes-en.pdf) | A guide that lists the requirements and provides step-by-step instructions for installing Sitecore Experience Commerce for a production deployment using Kubernetes. | - | [Upgrade Guide for XC 10.0 to 10.1 for Containers](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/101/Sitecore%20Experience%20Commerce%20101/Secure/XC%2010.1_Upgrade%20Guide%20for%20XC%2010.0%20to%2010.1%20for%20Containers.pdf) | Guidance for upgrading a Sitecore XC 10.0 deployment to Sitecore XC 10.1 for containers. | - -## Download Options for On Premises Deployments - - | Resource | Description | - | --- | --- | - | [Packages for On Premises WDP 2021.02-7.0.162](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/101/Sitecore%20Experience%20Commerce%20101/Secure/Sitecore.Commerce.WDP.2021.02-7.0.162.zip) | The Commerce packages and supporting SDKs for on-premises or hosted virtual machine deployments using Web Deploy Packages (WDP). | - | [Packages of Upgrading On Premises Deployments 2021.02-7.0.162](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/101/Sitecore%20Experience%20Commerce%20101/Secure/Sitecore.Commerce.2021.02-7.0.162.zip) | The Commerce packages and supporting software for upgrading existing on-premises deployments. | - | [XC Installation Guide for On Premises Solutions](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/101/Sitecore%20Experience%20Commerce%20101/Secure/XC%2010.1_Installation_Guide_for_On-Prem_Solutions.pdf) | A guide that lists the requirements and provides step-by-step instructions for installing Sitecore Experience Commerce in a single-server configuration on-premises or on a hosted virtual machine using Web Deployment Packages (WDP). | - | [Upgrade Guide for XC 10.0 to 10.1 for On Premises](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/101/Sitecore%20Experience%20Commerce%20101/Secure/XC%2010.1_Upgrade_Guide_for_10_0_to_10_1.pdf) | A guide that provides step-by-step instructions for upgrading a Sitecore XC 10.0 deployment to Sitecore XC 10.1. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/101/Sitecore%20Experience%20Commerce%20101/Non-secure/Sitecore%20XC10.1%20Release%20Notes.pdf) | Code and documentation improvements, resolved issues, known issues, breaking changes. | - | [Sitecore Documentation](https://doc.sitecore.com/) | Link to the Sitecore Documentation website. | - -## Translations - - | Resource | Description | - | --- | --- | - | [Business Tools Translations](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/101/Sitecore%20Experience%20Commerce%20101/Secure/BusinessTools.translations.zip) | Danish, German, Japanese language translation files for the Commerce Business Tools. Compatible with Sitecore Commerce Engine Connect 7.0. [Link to documentation for installing a translation file](https://doc.sitecore.com/developers/101/sitecore-experience-commerce/en/install-a-translation-file-for-the-xc-business-tools.html) | - | [SXA Storefront Translations](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/101/Sitecore%20Experience%20Commerce%20101/Secure/SXAStorefront.translations.zip) | Danish, German, Japanese language translation files for the SXA Storefront. Compatible with SXA Storefront 6.0. | - | [Commerce Connect Translations](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/101/Sitecore%20Experience%20Commerce%20101/Secure/CommerceConnect.translations.zip) | Danish, German, Japanese language translation files for Commerce Connect. Compatible with Commerce Connect 16.0. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/102/Sitecore_Experience_Commerce_102/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/102/Sitecore_Experience_Commerce_102/index.md deleted file mode 100644 index d0cfa3763..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/102/Sitecore_Experience_Commerce_102/index.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: "Sitecore Experience Commerce 10.2" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/102/Sitecore_Experience_Commerce_102.aspx ---- - -Sitecore Experience Commerce (XC) 10.2 is compatible with Sitecore Experience Platform (XP) 10.2 and 10.2 Update-1. Refer to the [Sitecore Experience Commerce Compatibility Table](https://kb.sitecore.net/articles/804595) for the software and version prerequisites. - -Sitecore XC 10.2 adds deployment and upgrade enhancements including the "Items as Resources" and "Container Asset Images" features (described in the release notes below), business usability enhancements, performance enhancements, and bug fixes and improvements based on input from our customers and partners. - -Return to [all available versions](/downloads/Sitecore_Commerce) - -## Download Options for Sitecore Container Deployments - - | Resource | Description | - | --- | --- | - | [Sitecore Commerce Container SDK](https://github.com/Sitecore/container-deployment/releases) | Link to Sitecore Commerce Container SDK packages on GitHub. The SDK contains the Dockerfiles, .env files, Docker compose ymls, Kubernetes yamls, and sample scripts to build container images of the Commerce Engine solution. | - | [XC Installation Guide for Developer Workstation with Containers](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/102/Sitecore%20Experience%20Commerce%20102/Secure/SXC_10_2_Installation_Guide_for_a_Developer_Workstation_with_Containers-en.pdf) | A guide that lists the requirements and provides step-by-step instructions for installing Sitecore Experience Commerce using sample containers on a developer workstation. | - | [XC Installation Guide for Production Deployments with Kubernetes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/102/Sitecore%20Experience%20Commerce%20102/Secure/SXC_10_2_Installation_Guide_for_Production_Deployments_with_Kubernetes-en.pdf) | A guide that lists the requirements and provides step-by-step instructions for installing Sitecore Experience Commerce for a production deployment using Kubernetes. | - | [Upgrade Guide for XC 10.1 to 10.2 for Containers](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/102/Sitecore%20Experience%20Commerce%20102/Secure/SCX_10_2_Container_Upgrade_Guide_en.pdf) | Guidance for upgrading a Sitecore XC 10.1 deployment to Sitecore XC 10.2 for containers. | - -## Download Options for On Premises Deployments - - | Resource | Description | - | --- | --- | - | [Packages for On Premises WDP 2021.11-8.0.218](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/102/Sitecore%20Experience%20Commerce%20102/Secure/Sitecore.Commerce.WDP.2021.11-8.0.218.zip) | The Commerce packages and supporting SDKs for on-premises or hosted virtual machine deployments using Web Deploy Packages (WDP). | - | [Commerce Upgrade Resources 1.0.2](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/102/Sitecore%20Experience%20Commerce%20102/Secure/Commerce.Upgrade.resources.1.0.2.zip) | The previous XC 10.1 release data items-as-resources (.dat files) to support upgrade from XC 10.1 to 10.2. Includes Commerce Engine, Commerce Connect, and Storefront resources pertaining to Core, Master, and Web data, where applicable. | - | [XC Installation Guide for On Premises Solutions](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/102/Sitecore%20Experience%20Commerce%20102/Secure/SXC_10_2_Installation_Guide_for_On-Premises_Solutions-en.pdf) | A guide that lists the requirements and provides step-by-step instructions for installing Sitecore Experience Commerce in a single-server configuration on-premises or on a hosted virtual machine using Web Deployment Packages (WDP). | - | [Upgrade Guide for XC 10.1 to 10.2 for On Premises](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/102/Sitecore%20Experience%20Commerce%20102/Secure/SXC_10_2_Upgrade_Guide_for_Sitecore_XC_10_1-en.pdf) | A guide that provides step-by-step instructions for upgrading a Sitecore XC 10.1 deployment to Sitecore XC 10.2. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/102/Sitecore%20Experience%20Commerce%20102/Non-secure/Sitecore%20XC10.2%20Release%20Notes.pdf) | Improvements, resolved issues, known issues, breaking changes. | - | [Sitecore Documentation](https://doc.sitecore.com/) | Link to the Sitecore Documentation website. | - -## Translations - - | Resource | Description | - | --- | --- | - | [Business Tools Translations](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/102/Sitecore%20Experience%20Commerce%20102/Secure/Sitecore.Commerce.Engine.Connect.IaR.Translations.Content.8.0.49.zip) | Danish, German, Japanese language translation files for the Commerce Business Tools. Starting in XC 10.2 these are delivered as Sitecore item resource files (.datfiles). Compatible with Sitecore Commerce Engine Connect 8.0. [Link to documentation for installing a translation file](https://doc.sitecore.com/developers/102/sitecore-experience-commerce/en/install-a-translation-file-for-the-xc-business-tools.html) | - | [SXA Storefront Translations](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/102/Sitecore%20Experience%20Commerce%20102/Secure/Sitecore.Commerce.Experience.Accelerator.IaR.Translations.Content.7.0.48.zip) | Danish, German, Japanese language translation files for the SXA Storefront. Starting in XC 10.2 these are delivered as Sitecore item resource files (.datfiles). Compatible with SXA Storefront 7.0. | - | [Commerce Connect Translations](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/102/Sitecore%20Experience%20Commerce%20102/Secure/Sitecore.Commerce.Connect.IaR.Translations.Content.17.0.48.zip) | Danish, German, Japanese language translation files for Commerce Connect. Starting in XC 10.2 these are delivered as Sitecore item resource files (.datfiles). Compatible with Commerce Connect 17.0. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/103/Sitecore_Experience_Commerce_103/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/103/Sitecore_Experience_Commerce_103/index.md deleted file mode 100644 index ad3fb2a02..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/103/Sitecore_Experience_Commerce_103/index.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: "Sitecore Experience Commerce 10.3" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/103/Sitecore_Experience_Commerce_103.aspx ---- - -Sitecore Experience Commerce (XC) 10.3 is compatible with Sitecore Experience Platform (XP) 10.3 and 10.3 Update-1. Refer to the [Sitecore Experience Commerce Compatibility Table](https://kb.sitecore.net/articles/804595) for the software and version prerequisites. - -Sitecore XC 10.3 is a maintenance release comprising bug fixes and providing compatibility with Sitecore Experience Platform and dependent third parties. - -Return to [all available versions](/downloads/Sitecore_Commerce) - -## Download Options for Sitecore Container Deployments - - | Resource | Description | - | --- | --- | - | [Sitecore Commerce Container SDK](https://github.com/Sitecore/container-deployment/releases) | Link to Sitecore Commerce Container SDK packages on GitHub. The SDK contains the Dockerfiles, .env files, Docker compose ymls, Kubernetes yamls, and sample scripts to build container images of the Commerce Engine solution. | - | [XC Installation Guide for Developer Workstation with Containers](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/103/Sitecore%20Experience%20Commerce%20103/Secure/SXC_10_3_Installation_Guide_for_a_Developer_Workstation_with_Containers-en.pdf) | A guide that lists the requirements and provides step-by-step instructions for installing Sitecore Experience Commerce using sample containers on a developer workstation. | - | [XC Installation Guide for Production Deployments with Kubernetes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/103/Sitecore%20Experience%20Commerce%20103/Secure/SXC_10_3_Installation_Guide_for_Production_Deployments_with_Kubernetes-en.pdf) | A guide that lists the requirements and provides step-by-step instructions for installing Sitecore Experience Commerce for a production deployment using Kubernetes. | - | [Upgrade Guide for XC 10.3 for Containers](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/103/Sitecore%20Experience%20Commerce%20103/Secure/SXC_10_3_Container_Upgrade_Guide-en.pdf) | Guidance for upgrading a Sitecore deployment to Sitecore XC 10.3 for containers. | - -## Download Options for On Premises Deployments - - | Resource | Description | - | --- | --- | - | [Packages for On Premises WDP 2022.12-9.0.82](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/103/Sitecore%20Experience%20Commerce%20103/Secure/Sitecore.Commerce.WDP.2022.12-9.0.82.zip) | The Commerce packages and supporting SDKs for on-premises or hosted virtual machine deployments using Web Deploy Packages (WDP). | - | [XC Installation Guide for On Premises Solutions](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/103/Sitecore%20Experience%20Commerce%20103/Secure/SXC_10_3_Installation_Guide_for_On-Premises_Solutions-en.pdf) | A guide that lists the requirements and provides step-by-step instructions for installing Sitecore Experience Commerce in a single-server configuration on-premises or on a hosted virtual machine using Web Deployment Packages (WDP).

| - | [Upgrade Guide for XC 10.3 for On Premises](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/103/Sitecore%20Experience%20Commerce%20103/Secure/SXC_10_3_Upgrade_Guide_for_Sitecore_XC_10_2-en.pdf) | A guide that provides step-by-step instructions for upgrading a Sitecore XC deployment to Sitecore XC 10.3. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/103/Sitecore%20Experience%20Commerce%20103/Non-secure/Sitecore%20XC10.3%20Release%20Notes.pdf) | Improvements, resolved issues, known issues, breaking changes. | - | [Sitecore Documentation](https://doc.sitecore.com) | Link to the Sitecore Documentation website. | - -## Translations - - | Resource | Description | - | --- | --- | - | [Business Tools Translations](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/103/Sitecore%20Experience%20Commerce%20103/Secure/Sitecore.Commerce.Engine.Connect.IaR.Translations.Content.9.0.17.zip) | Danish, German, Japanese language translation files for the Commerce Business Tools. These are delivered as Sitecore item resource files (.datfiles). Compatible with Sitecore Commerce Engine Connect 9.0. [Link to documentation for installing a translation file](https://doc.sitecore.com/developers/102/sitecore-experience-commerce/en/install-a-translation-file-for-the-xc-business-tools.html) | - | [SXA Storefront Translations](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/103/Sitecore%20Experience%20Commerce%20103/Secure/Sitecore.Commerce.Experience.Accelerator.IaR.Translations.Content.8.0.20.zip) | Danish, German, Japanese language translation files for the SXA Storefront. Starting in XC 10.2 these are delivered as Sitecore item resource files (.datfiles). Compatible with SXA Storefront 8.0. | - | [Commerce Connect Translations](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/103/Sitecore%20Experience%20Commerce%20103/Secure/Sitecore.Commerce.Connect.IaR.Translations.Content.18.0.13.zip) | Danish, German, Japanese language translation files for Commerce Connect. Starting in XC 10.2 these are delivered as Sitecore item resource files (.datfiles). Compatible with Commerce Connect 18.0. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Commerce_Server_112_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Commerce_Server_112_Initial_Release/index.md deleted file mode 100644 index 2b8b370d4..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Commerce_Server_112_Initial_Release/index.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: "Commerce Server 11.2 Initial Release" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/80/Commerce_Server_112_Initial_Release.aspx ---- - -Stand-alone version of Commerce Server available for existing customers. - -Looking for a different version? Return to [all available 11.x versions](/downloads/Sitecore_Commerce) - -## Core Downloads - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Commerce%20Server%20112%20Initial%20Release/Secure/CommerceServer-11.2.175.0.exe) | Latest version of the Commerce Server Core (CommerceServer-11.2.175.0) | - -## Optional Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Commerce Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Commerce%20Server%20112%20Initial%20Release/Secure/Sitecore%20Commerce%20Connect%208.0%20rev.%20150105.zip) | The latest version of Sitecore Commerce Connect (Sitecore Commerce Connect 8.0 rev. 150105) | - | [Sitecore Commerce Server Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Commerce%20Server%20112%20Initial%20Release/Secure/Sitecore%20Commerce%20Server%20Connect%208.0%20rev.%208.0.211.0.update) | The latest version of Sitecore Commerce Server Connect (Sitecore Commerce Server Connect 8.0 rev. 8.0.211.0) | - | [Sitecore Merchandising Manager](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Commerce%20Server%20112%20Initial%20Release/Secure/Sitecore%20Merchandising%20Manager%208.0%20rev.%208.0.211.0.update) | Latest version of the Sitecore Merchandising Manager for Sitecore powered by Commerce Server (Sitecore Merchandising Manager 8.0 rev. 8.0.211.0) | - | [Desktop Business Tools](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Commerce%20Server%20112%20Initial%20Release/Secure/BusinessTools-11.2.175.0.exe) | Latest version of the Commerce Server Desktop Business Tools (BusinessTools-11.2.175.0) | - | [BizTalk Adapters](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Commerce%20Server%20112%20Initial%20Release/Secure/BTSAdapters-11.2.175.0.exe) | Latest version of the BizTalk Adapters for Commerce Server (BTSAdapters-11.2.175.0) | - | [Commerce Server Partner SDK](https://marketplace.sitecore.net/Modules/Commerce_Server_Desktop_Business_Tools_SDK?sc_lang=en) | Source code for the Desktop Business Tools
| - | [Commerce Server Sample Code](https://marketplace.sitecore.net/Modules/Commerce_Server_SDK?sc_lang=en) | Sample code for Commerce Server | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](http://commercesdn.sitecore.net/SCpbcs80/Readme/en-us/) | Release notes for the Sitecore Commerce Server 11.2, contains highlights, known issues, and breaking changes. | - | [Documentation](https://doc.sitecore.com/) | Sitecore Documentation Portal with all Commerce documentation. | - | [Sitecore Commerce Installation Guide](http://commercesdn.sitecore.net/SCpbCS80/SitecoreCommerceInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing and configuring Commerce Server on a single computer for development or evaluation. These instructions provide a minimal configuration to enable a developer or system administrator to install Commerce Server.
| - | [Sitecore Commerce Desktop Business Tools Installation Guide](http://commercesdn.sitecore.net/SCpbCS80/SitecoreCommerceDesktopBusinessToolsInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing the Commerce Server Desktop Business Tools, which are shared between Sitecore Commerce powered by Commerce Server and Commerce Server.
| - | [Sitecore Commerce BizTalk Adapters Installation Guide](http://commercesdn.sitecore.net/SCpbCS80/SitecoreCommerceBizTalkAdaptersInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing the BizTalk Adapters, which are used for connecting your Sitecore Commerce powered by Commerce Server or Commerce Server deployment to 3rd party ERP systems or B2B trading partners.
| - -## Translations - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Commerce%20Server%20112%20Initial%20Release/Secure/CommerceServer-11.2.178.0.exe) | Latest German (de-DE) version of Commerce Server
| - | [Desktop Business Tools](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Commerce%20Server%20112%20Initial%20Release/Secure/BusinessTools-11.2.178.0.exe) | Latest German (de-DE) version of the Commerce Server Desktop Business Tools
| - | [BizTalk Adapters](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Commerce%20Server%20112%20Initial%20Release/Secure/BTSAdapters-11.2.178.0.exe) | Latest German (de-DE) version of the BizTalk Adapters for Commerce Server | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Commerce_Server_112_Update1/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Commerce_Server_112_Update1/index.md deleted file mode 100644 index 77eecab46..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Commerce_Server_112_Update1/index.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: "Commerce Server 11.2 Update-1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/80/Commerce_Server_112_Update1.aspx ---- - -Stand-alone version of Commerce Server available for existing customers. - -Looking for a different version? Return to [all available 11.x versions](/downloads/Sitecore_Commerce) - -## Core Downloads - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Commerce%20Server%20112%20Update1/Secure/CommerceServer-11.2.189.0.exe) | Latest version of the Commerce Server Core (CommerceServer-11.2.189.0) | - -## Optional Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Commerce Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Commerce%20Server%20112%20Update1/Secure/Sitecore%20Commerce%20Connect%208.0%20rev.%20150105.zip) | The latest version of Sitecore Commerce Connect (Sitecore Commerce Connect 8.0 rev. 150105)
| - | [Sitecore Commerce Server Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Commerce%20Server%20112%20Update1/Secure/Sitecore%20Commerce%20Server%20Connect%2080%20rev%20802250.update) | The latest version of Sitecore Commerce Server Connect (Sitecore Commerce Server Connect 8.0 rev. 8.0.225.0) | - | [Sitecore Merchandising Manager](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Commerce%20Server%20112%20Update1/Secure/Sitecore%20Merchandising%20Manager%2080%20rev%20802250.update) | Latest version of the Sitecore Merchandising Manager for Sitecore powered by Commerce Server (Sitecore Merchandising Manager 8.0 rev. 8.0.225.0) | - | [Desktop Business Tools](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Commerce%20Server%20112%20Update1/Secure/BusinessTools-11.2.189.0.exe) | Latest version of the Commerce Server Desktop Business Tools (BusinessTools-11.2.189.0) | - | [BizTalk Adapters](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Commerce%20Server%20112%20Update1/Secure/BTSAdapters-11.2.189.0.exe) | Latest version of the BizTalk Adapters for Commerce Server (BTSAdapters-11.2.189.0) | - | [Commerce Server Partner SDK](https://marketplace.sitecore.net/Modules/Commerce_Server_Desktop_Business_Tools_SDK?sc_lang=en) | Source code for the Desktop Business Tools
| - | [Commerce Server Sample Code](https://marketplace.sitecore.net/Modules/Commerce_Server_SDK?sc_lang=en) | Sample code for Commerce Server
| - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](https://doc.sitecore.com/commercesdn/SCpbcs80/Readme/en-us/) | Release notes for Sitecore Commerce Server 11.2 - Update 1, contains highlights, known issues, and breaking changes. | - | [Documentation](https://doc.sitecore.net:443/en/Products/Sitecore_Commerce/80) | Sitecore Documentation Portal with all Commerce documentation. | - | [Sitecore Commerce Installation Guide](http://commercesdn.sitecore.net/SCpbCS80/SitecoreCommerceInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing and configuring Commerce Server on a single computer for development or evaluation. These instructions provide a minimal configuration to enable a developer or system administrator to install Commerce Server.
| - | [Sitecore Commerce Desktop Business Tools Installation Guide](http://commercesdn.sitecore.net/SCpbCS80/SitecoreCommerceDesktopBusinessToolsInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing the Commerce Server Desktop Business Tools, which are shared between Sitecore Commerce powered by Commerce Server and Commerce Server.
| - | [Sitecore Commerce BizTalk Adapters Installation Guide](http://commercesdn.sitecore.net/SCpbCS80/SitecoreCommerceBizTalkAdaptersInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing the BizTalk Adapters, which are used for connecting your Sitecore Commerce powered by Commerce Server or Commerce Server deployment to 3rd party ERP systems or B2B trading partners.
| - -## Translations - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Commerce%20Server%20112%20Update1/Secure/CommerceServer-11.2.190.0.exe) | Latest German (de-DE) version of Commerce Server
| - | [Desktop Business Tools](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Commerce%20Server%20112%20Update1/Secure/BusinessTools-11.2.190.0.exe) | Latest German (de-DE) version of the Commerce Server Desktop Business Tools
| - | [BizTalk Adapters](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Commerce%20Server%20112%20Update1/Secure/BTSAdapters-11.2.190.0.exe) | Latest German (de-DE) version of the BizTalk Adapters for Commerce Server
| \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_Connect/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_Connect/index.md deleted file mode 100644 index 923d8a9f6..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_Connect/index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Sitecore Commerce 8.0 Connect" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_Connect.aspx ---- - -Connectivity module for integrating 3rd party commerce or ERP platforms with the Sitecore Experience Platform.  - -This is the initial and only 8.0 release. There is no Update-1 release for Sitecore Commerce Connect 8.0. It is compatible with Sitecore Experience Platform 8.0 Initial Release through Update-7. For more information on alignment between releases of Sitecore Commerce and the Sitecore Experience Platform, see the [Sitecore Commerce Compatibility Table](https://kb.sitecore.net/articles/316437) - -Looking for a different version? Return to [all available 8.x versions](/downloads/Sitecore_Commerce) - -## Core Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Commerce Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20Connect/Secure/Sitecore%20Commerce%20Connect%208.0%20rev.%20150105.zip) | This is latest version of Sitecore Commerce Connect (Sitecore Commerce Connect 8.0 rev. 150105). | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Documentation](https://doc.sitecore.net:443/?sc_lang=en) | Sitecore Documentation Portal with all Commerce documentation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Commerce_Server_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Commerce_Server_Initial_Release/index.md deleted file mode 100644 index b41616f6a..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Commerce_Server_Initial_Release/index.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -title: "Sitecore Commerce 8.0 powered by Commerce Server Initial Release" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Commerce_Server_Initial_Release.aspx ---- - -Sitecore's powered by Commerce Server product, compatible with Sitecore Experience Platform 8.0 Initial Release through Update-3. For more information on alignment between releases of Sitecore Commerce and the Sitecore Experience Platform, see the [Sitecore Commerce Compatibility Table](https://kb.sitecore.net/articles/316437) - -Looking for a different version? Return to [all available 8.x versions](/downloads/Sitecore_Commerce) - -## Core Downloads - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Initial%20Release/Secure/CommerceServer-11.2.175.0.exe) | Latest version of the Commerce Server Core (CommerceServer-11.2.175.0)

| Latest version of the Commerce Server Core (CommerceServer-11.2.175.0) |



| - | [Sitecore Commerce Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Initial%20Release/Secure/Sitecore%20Commerce%20Connect%208.0%20rev.%20150105.zip) | The latest version of Sitecore Commerce Connect (Sitecore Commerce Connect 8.0 rev. 150105) | - | [Sitecore Commerce Server Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Initial%20Release/Secure/Sitecore%20Commerce%20Server%20Connect%208.0%20rev.%208.0.211.0.update) | The latest version of Sitecore Commerce Server Connect (Sitecore Commerce Server Connect 8.0 rev. 8.0.211.0) | - | [Sitecore Merchandising Manager](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Initial%20Release/Secure/Sitecore%20Merchandising%20Manager%208.0%20rev.%208.0.211.0.update) | Latest version of the Sitecore Merchandising Manager for Sitecore powered by Commerce Server (Sitecore Merchandising Manager 8.0 rev. 8.0.211.0) | - | [Sitecore Reference Storefront (Sitecore Commerce powered by Commerce Server)](https://github.com/Sitecore/Reference-Storefront/releases) | Sitecore Reference Storefront 8.0.122.0 (Sitecore Commerce powered by Commerce Server) | - -## Optional Downloads - - | Resource | Description | - | --- | --- | - | [Desktop Business Tools](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Initial%20Release/Secure/BusinessTools-11.2.175.0.exe) | Latest version of the Commerce Server Desktop Business Tools (BusinessTools-11.2.175.0)
| - | [BizTalk Adapters](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Initial%20Release/Secure/BTSAdapters-11.2.175.0.exe) | Latest version of the BizTalk Adapters for Commerce Server (BTSAdapters-11.2.175.0) | - | [Sitecore Commerce Server Role Configurations](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Initial%20Release/Secure/CommerceServerRoleConfigurations.zip) | Configuration files to enable Content Delivery and Processing roles.
| - | [Commerce Server Partner SDK](https://marketplace.sitecore.net/Modules/Commerce_Server_Desktop_Business_Tools_SDK?sc_lang=en) | Source code for the Desktop Business Tools | - | [Commerce Server Sample Code](https://marketplace.sitecore.net/Modules/Commerce_Server_SDK?sc_lang=en) | Sample code for Commerce Server | - | [Sitecore Commerce Server Connect Sample MVC Site](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Initial%20Release/Secure/Sitecore%20Commerce%20Server%20Connect%20Sample%20MVC%20Site.8.0.211.0.update) | The latest version of Sitecore Commerce Server Connect Sample MVC Site | - | [MVC Site Deployment Scripts](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Initial%20Release/Secure/Deploy.zip) | A set of scripts to assist in the deployment of Sitecore Commerce powered by Commerce Server | - | [Source Code Sitecore Commerce Server Sample MVC Site](https://marketplace.sitecore.net/Modules/Commerce_Server_Sample_MVC_Site_Source?sc_lang=en) | Source code for the latest version of Sitecore Commerce Server Sample MVC Site | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](http://commercesdn.sitecore.net/SCpbcs80/Readme/en-us/) | Release notes for the Sitecore Commerce 8 powered by Commerce Server, contains highlights, known issues, and breaking changes. | - | [Documentation](https://doc.sitecore.com/) | Sitecore Documentation Portal with all Commerce documentation. | - | [Sitecore Commerce Installation Guide](http://commercesdn.sitecore.net/SCpbCS80/SitecoreCommerceInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing and configuring Commerce Server on a single computer for development or evaluation. These instructions provide a minimal configuration to enable a developer or system administrator to install Commerce Server.
| - | [Sitecore Commerce Desktop Business Tools Installation Guide](http://commercesdn.sitecore.net/SCpbCS80/SitecoreCommerceDesktopBusinessToolsInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing the Commerce Server Desktop Business Tools, which are shared between Sitecore Commerce powered by Commerce Server and Commerce Server.
| - | [Sitecore Commerce BizTalk Adapters Installation Guide](http://commercesdn.sitecore.net/SCpbCS80/SitecoreCommerceBizTalkAdaptersInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing the BizTalk Adapters, which are used for connecting your Sitecore Commerce powered by Commerce Server or Commerce Server deployment to 3rd party ERP systems or B2B trading partners.
| - -## Translations - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Initial%20Release/Secure/CommerceServer-11.2.178.0.exe) | Latest German (de-DE) version of Commerce Server
| - | [Desktop Business Tools](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Initial%20Release/Secure/BusinessTools-11.2.178.0.exe) | Latest German (de-DE) version of the Commerce Server Desktop Business Tools
| - | [BizTalk Adapters](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Initial%20Release/Secure/BTSAdapters-11.2.178.0.exe) | Latest German (de-DE) version of the BizTalk Adapters for Commerce Server
| \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Commerce_Server_Update1/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Commerce_Server_Update1/index.md deleted file mode 100644 index 0408f0aa2..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Commerce_Server_Update1/index.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: "Sitecore Commerce 8.0 powered by Commerce Server Update-1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Commerce_Server_Update1.aspx ---- - -Sitecore's powered by Commerce Server product, compatible with Sitecore Experience Platform 8.0 Update-4 through Update-7. For more information on alignment between releases of Sitecore Commerce and the Sitecore Experience Platform, see the [Sitecore Commerce Compatibility Table](https://kb.sitecore.net/articles/316437) - -Looking for a different version? Return to [all available 8.x versions](/downloads/Sitecore_Commerce) - -## Core Downloads - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Update1/Secure/CommerceServer-11.2.189.0.exe) | Latest version of the Commerce Server Core (CommerceServer-11.2.189.0) | - | [Sitecore Commerce Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Update1/Secure/Sitecore%20Commerce%20Connect%208.0%20rev.%20150105.zip) | The latest version of Sitecore Commerce Connect (Sitecore Commerce Connect 8.0 rev. 150105) | - | [Sitecore Commerce Server Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Update1/Secure/Sitecore%20Commerce%20Server%20Connect%2080%20rev%20802250.update) | The latest version of Sitecore Commerce Server Connect (Sitecore Commerce Server Connect 8.0 rev. 8.0.225.0) | - | [Sitecore Merchandising Manager](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Update1/Secure/Sitecore%20Merchandising%20Manager%2080%20rev%20802250.update) | Latest version of the Sitecore Merchandising Manager for Sitecore powered by Commerce Server (Sitecore Merchandising Manager 8.0 rev. 8.0.225.0) | - | [Sitecore Reference Storefront (Sitecore Commerce powered by Commerce Server)](https://github.com/Sitecore/Reference-Storefront/releases) | Sitecore Reference Storefront 8.0.130.0 (Sitecore Commerce powered by Commerce Server) | - -## Optional Downloads - - | Resource | Description | - | --- | --- | - | [Desktop Business Tools](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Update1/Secure/BusinessTools-11.2.189.0.exe) | Latest version of the Commerce Server Desktop Business Tools (BusinessTools-11.2.189.0) | - | [BizTalk Adapters](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Update1/Secure/BTSAdapters-11.2.189.0.exe) | Latest version of the BizTalk Adapters for Commerce Server (BTSAdapters-11.2.189.0) | - | [Sitecore Commerce Server Role Configurations](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Update1/Secure/CommerceServerRoleConfigurations.zip) | Configuration files to enable Content Delivery and Processing roles.
| - | [Commerce Server Partner SDK](https://marketplace.sitecore.net/Modules/Commerce_Server_Desktop_Business_Tools_SDK?sc_lang=en) | Source code for the Desktop Business Tools
| - | [Commerce Server Sample Code](https://marketplace.sitecore.net/Modules/Commerce_Server_SDK?sc_lang=en) | Sample code for Commerce Server | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](http://commercesdn.sitecore.net/SCpbcs80/Readme/en-us/) | Release notes for Sitecore Commerce 8 powered by Commerce Server - Update 1, contains highlights, known issues, and breaking changes. | - | [Documentation](https://doc.sitecore.com/) | Sitecore Documentation Portal with all Commerce documentation. | - | [Sitecore Commerce Installation Guide](http://commercesdn.sitecore.net/SCpbCS80/SitecoreCommerceInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing and configuring Commerce Server on a single computer for development or evaluation. These instructions provide a minimal configuration to enable a developer or system administrator to install Commerce Server.
| - | [Sitecore Commerce Desktop Business Tools Installation Guide](http://commercesdn.sitecore.net/SCpbCS80/SitecoreCommerceDesktopBusinessToolsInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing the Commerce Server Desktop Business Tools, which are shared between Sitecore Commerce powered by Commerce Server and Commerce Server.
| - | [Sitecore Commerce BizTalk Adapters Installation Guide](http://commercesdn.sitecore.net/SCpbCS80/SitecoreCommerceBizTalkAdaptersInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing the BizTalk Adapters, which are used for connecting your Sitecore Commerce powered by Commerce Server or Commerce Server deployment to 3rd party ERP systems or B2B trading partners.
| - -## Translations - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Update1/Secure/CommerceServer-11.2.190.0.exe) | Latest German (de-DE) version of Commerce Server
| - | [Desktop Business Tools](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Update1/Secure/BusinessTools-11.2.190.0.exe) | Latest German (de-DE) version of the Commerce Server Desktop Business Tools
| - | [BizTalk Adapters](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Commerce%20Server%20Update1/Secure/BTSAdapters-11.2.190.0.exe) | Latest German (de-DE) version of the BizTalk Adapters for Commerce Server
| \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Microsoft_Dynamics_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Microsoft_Dynamics_Initial_Release/index.md deleted file mode 100644 index 95ca84d4a..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Microsoft_Dynamics_Initial_Release/index.md +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: "Sitecore Commerce 8.0 powered by Microsoft Dynamics Initial Release" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Microsoft_Dynamics_Initial_Release.aspx ---- - -Sitecore's powered by Microsoft Dynamics commerce product, compatible with Sitecore Experience Platform 8.0 Initial Release through Update-3. Includes connectivity modules for integration with Microsoft Dynamics Retail AX 2012 CU8. For more information on alignment between releases of Sitecore Commerce and the Sitecore Experience Platform, see the [Sitecore Commerce Compatibility Table](https://kb.sitecore.net/articles/316437) - -Looking for a different version? Return to [all available 8.x versions](/downloads/Sitecore_Commerce) - -## Core Downloads - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/CommerceServer-11.2.175.0.exe) | Latest version of the Commerce Server Core (CommerceServer-11.2.175.0) | - | [Sitecore Commerce Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/Sitecore%20Commerce%20Connect%208.0%20rev.%20150105.zip) | The latest version of Sitecore Commerce Connect (Sitecore Commerce Connect 8.0 rev. 150105) | - | [Sitecore Commerce Server Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/Sitecore%20Commerce%20Server%20Connect%208.0%20rev.%208.0.211.0.update) | The latest version of Sitecore Commerce Server Connect (Sitecore Commerce Server Connect 8.0 rev. 8.0.211.0) | - | [Sitecore Merchandising Manager](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/Sitecore%20Merchandising%20Manager%208.0%20rev.%208.0.211.0.update) | Latest version of the Sitecore Merchandising Manager for Sitecore powered by Commerce Server (Sitecore Merchandising Manager 8.0 rev. 8.0.211.0) | - | [Connect.DynamicsRetail](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/Connect.DynamicsRetail.8.0.116.0.update) | Connect for Dynamics Retail (Connect.DynamicsRetail.8.0.116.0) is a set of Sitecore Commerce Connect processors that implement transactional connectivity with Dynamics AX for Retail. | - | [DynamicsRetail.TransactionService](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/DynamicsRetail.TransactionService.8.0.116.0.update) | Transaction Service (DynamicsRetail.TransactionService.8.0.116.0) provides a wrapper around Dynamics Transaction allowing the separation of transaction functionality from storefront functionality.  The Transaction Service leverages the Dynamics Retail SDK so source code is provided to enable customers to assimilate newer versions of the SDK as they become available.
| - | [Sitecore.Commerce.RoutingFramework](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/Sitecore.Commerce.RoutingFramework.8.0.116.0.update) | A sample basic framework (Sitecore.Commerce.RoutingFramework.8.0.116.0) for extracting product catalog data from AX and transforming it into a form that the Commerce Server Catalog understands.  Can also automate synchronization completely by importing the resulting file into Commerce Server's Catalog system. This is also available as an SDK, below. | - | [DynamicsRetail.Routing](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/DynamicsRetail.Routing.8.0.116.0.update) | Dynamics Retail (DynamicsRetail.Routing.8.0.116.0) specific routing processors that plug into the Routing Framework to enable synchronization of Product Catalog data from Dynamics to the Sitecore Commerce Server Catalog edge catalog. This is also available as an SDK, below. | - | [Sitecore Reference Storefront Powered by Microsoft Dynamics](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/Sitecore.Reference.Storefront.Powered.by.Microsoft.Dynamics.8.0.116.0.update) | Sitecore Reference Storefront Powered by Microsoft Dynamics | - -## Optional Downloads - - | Resource | Description | - | --- | --- | - | [ContosoImages](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/ContosoImages2.update) | Image files for Sitecore Reference Storefront Powered by Microsoft Dynamics in a Sitecore Update package | - | [DynamicsRetail.Routing SDK](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/DynamicsRetail.Routing.8.0.116.0.update) | Dynamics Retail specific routing processors that plug into the Routing Framework to enable synchronization of Product Catalog data from Dynamics to the Sitecore Commerce Server Catalog edge catalog | - | [TransactionService SDK](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/DynamicsRetail.TransactionService.8.0.116.0.update) | Transaction Service provides a wrapper around Dynamics Transaction allowing the separation of transaction functionality from storefront functionality.  The Transaction Service leverages the Dynamics Retail SDK so source code is provided to enable customers to assimilate newer versions of the SDK as they become available | - | [Routing.Framework SDK](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/Sitecore.Commerce.RoutingFramework.8.0.116.0.update) | Sample basic framework for extracting product catalog data from AX and transforming it into a form that the Commerce Server Catalog understands.  Can also automate synchronization completely by importing the resulting file into Commerce Server's Catalog system | - | [Source code for Sitecore Reference Storefront Powered by Microsoft Dynamics](https://github.com/Sitecore/Reference-Storefront-SCpbMD) | Source code for Sitecore Reference Storefront Powered by Microsoft Dynamics | - | [Sitecore Reference Storefront Contributor License Agreement FAQ](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Non-secure/Sitecore%20Reference%20Storefront%20Contributor%20License%20Agreement%20FAQ.PDF) | Sitecore Reference Storefront Contributor License Agreement FAQ | - | [Sitecore Reference Storefront Project - CLA (individual)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Non-secure/Sitecore%20Reference%20Storefront%20Project%20-%20CLA%20(individual).pdf) | Sitecore Reference Storefront Project - CLA (individual) (pdf) | - | [Sitecore Reference Storefront Project - CLA (corporate)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Non-secure/Sitecore%20Reference%20Storefront%20Project%20-%20CLA%20(corporate).pdf) | Sitecore Reference Storefront Project - CLA (corporate) (pdf) | - | [Sitecore Commerce Server Role Configurations](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/CommerceServerRoleConfigurations.zip) | Configuration files to enable Content Delivery and Processing roles.
| - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](http://commercesdn.sitecore.net/SCpbmd80/Readme/en-us/) | Release notes for the Sitecore Commerce 8 powered by Microsoft Dynamics, contains highlights, known issues, and breaking changes. | - | [Documentation](https://doc.sitecore.com/) | Sitecore Documentation Portal with all Commerce documentation. | - | [Sitecore Reference Storefront powered by Microsoft Dynamics Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/Sitecore%20Reference%20Storefront%20SCpbMD%20Installation%20Guide.pdf) | Installation Guide for Sitecore Reference Storefront powered by Microsoft Dynamics | - -## Translations - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/CommerceServer-11.2.178.0.exe) | Latest German (de-DE) version of Commerce Server
| \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Microsoft_Dynamics_Update1/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Microsoft_Dynamics_Update1/index.md deleted file mode 100644 index 1e77ecc56..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Microsoft_Dynamics_Update1/index.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: "Sitecore Commerce 8.0 powered by Microsoft Dynamics Update-1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Microsoft_Dynamics_Update1.aspx ---- - -Sitecore's powered by Microsoft Dynamics commerce product, compatible with Sitecore Experience Platform 8.0 Update-4 through Update-7. Includes connectivity modules for integration with Microsoft Dynamics Retail AX 2012 R3 CU8. For more information on alignment between releases of Sitecore Commerce and the Sitecore Experience Platform, see the [Sitecore Commerce Compatibility Table](https://kb.sitecore.net/articles/316437) - -Looking for a different version? Return to [all available 8.x versions](/downloads/Sitecore_Commerce) - -## Core Downloads - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Update1/Secure/CommerceServer-11.2.189.0.exe) | Latest version of the Commerce Server Core (CommerceServer-11.2.189.0) | - | [Sitecore Commerce Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Update1/Secure/Sitecore%20Commerce%20Connect%208.0%20rev.%20150105.zip) | The latest version of Sitecore Commerce Connect (Sitecore Commerce Connect 8.0 rev. 150105) | - | [Sitecore Commerce Server Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Update1/Secure/Sitecore%20Commerce%20Server%20Connect%2080%20rev%20802250.update) | The latest version of Sitecore Commerce Server Connect (Sitecore Commerce Server Connect 8.0 rev. 8.0.225.0) | - | [Sitecore Merchandising Manager](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Update1/Secure/Sitecore%20Merchandising%20Manager%2080%20rev%20802250.update) | Latest version of the Sitecore Merchandising Manager for Sitecore powered by Commerce Server (Sitecore Merchandising Manager 8.0 rev. 8.0.225.0) | - | [Sitecore.Commerce.DynamicsIntegration.Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Update1/Secure/SitecoreCommerceDynamicsIntegrationConnect801250.update) | Sitecore Commerce DynamicsIntegration Connect 8.0.125.0 is a set of Sitecore Commerce Connect processors that implement transactional connectivity with Dynamics AX for Retail. | - | [Sitecore.Commerce.DynamicsIntegration.TransactionService](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Update1/Secure/SitecoreCommerceDynamicsIntegrationTransactionService801250.update) | Sitecore Commerce DynamicsIntegration TransactionService 8.0.125.0 provides a wrapper around the Dynamics Transaction allowing the separation of transaction functionality from storefront functionality.  The Transaction Service leverages the Dynamics Retail SDK so source code is provided to enable customers to assimilate newer versions of the SDK as they become available. | - | [Sitecore.Commerce.DynamicsIntegration.Routing](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Update1/Secure/SitecoreCommerceDynamicsIntegrationRouting801250.update) | Sitecore Commerce DynamicsIntegration Routing 8.0.125.0 a set of specific routing processors that plug into the Routing Framework to enable synchronization of Product Catalog data from Dynamics to the Sitecore Commerce Server Catalog edge catalog. This is also available as an SDK, below. | - | [Sitecore.Commerce.RoutingFramework](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Update1/Secure/SitecoreCommerceRoutingFramework801250.update) | Sitecore Commerce RoutingFramework 8.0.125.0 is a sample basic framework for extracting product catalog data from Microsoft Dynamics and transforming it into a form that the Commerce Server Catalog understands.  Can also automate synchronization completely by importing the resulting file into Commerce Server's Catalog system. This is also available as an SDK, below. | - | [Sitecore Reference Storefront (Sitecore Commerce powered by Microsoft Dynamics ®)](https://github.com/Sitecore/Reference-Storefront/releases) | Sitecore Reference Storefront 8.0.130.0 (Sitecore Commerce powered by Microsoft Dynamics ®) | - -## Optional Downloads - - | Resource | Description | - | --- | --- | - | [ContosoImages](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Update1/Secure/ContosoImages2.update) | Image files for Sitecore Reference Storefront Powered by Microsoft Dynamics in a Sitecore Update package | - | [TransactionService SDK](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Update1/Secure/TransactionService801250.ZIP) | Transaction Service provides a wrapper around Dynamics Transaction allowing the separation of transaction functionality from storefront functionality.  The Transaction Service leverages the Dynamics Retail SDK so source code is provided to enable customers to assimilate newer versions of the SDK as they become available | - | [DynamicsRetail.Routing SDK](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Update1/Secure/DynamicsRetailRouting801250.ZIP) | Dynamics Retail specific routing processors that plug into the Routing Framework to enable synchronization of Product Catalog data from Dynamics to the Sitecore Commerce Server Catalog edge catalog | - | [Routing.Framework SDK](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Update1/Secure/RoutingFrameworkSdk801250.ZIP) | Sample basic framework for extracting product catalog data from AX and transforming it into a form that the Commerce Server Catalog understands.  Can also automate synchronization completely by importing the resulting file into Commerce Server's Catalog system | - | [Sitecore Reference Storefront Contributor License Agreement FAQ](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Update1/Non-secure/Sitecore%20Reference%20Storefront%20Contributor%20License%20Agreement%20FAQ.PDF) | Sitecore Reference Storefront Contributor License Agreement FAQ | - | [Sitecore Reference Storefront Project - CLA (individual)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Update1/Non-secure/Sitecore%20Reference%20Storefront%20Project%20-%20CLA%20(individual).pdf) | Sitecore Reference Storefront Project - CLA (individual) (pdf) | - | [Sitecore Reference Storefront Project - CLA (corporate)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Update1/Non-secure/Sitecore%20Reference%20Storefront%20Project%20-%20CLA%20(corporate).pdf) | Sitecore Reference Storefront Project - CLA (corporate) (pdf) | - | [Sitecore Commerce Server Role Configurations](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Update1/Secure/CommerceServerRoleConfigurations.zip) | Configuration files to enable Content Delivery and Processing roles.
| - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](http://commercesdn.sitecore.net/SCpbmd80U1/Readme/en-us/) | Release notes for the Sitecore Commerce 8 powered by Microsoft Dynamics ® - Update 1, contains highlights, known issues, and breaking changes. | - | [Documentation](https://doc.sitecore.com/) | Sitecore Documentation Portal with all Commerce documentation. | - -## Translations - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/80/Sitecore%20Commerce%2080%20powered%20by%20Microsoft%20Dynamics%20Update1/Secure/CommerceServer-11.2.190.0.exe) | Latest German (de-DE) version of Commerce Server
| \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/81/Sitecore_Commerce_81_Connect/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/81/Sitecore_Commerce_81_Connect/index.md deleted file mode 100644 index 652823e71..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/81/Sitecore_Commerce_81_Connect/index.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: "Sitecore Commerce 8.1 Connect" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/81/Sitecore_Commerce_81_Connect.aspx ---- - -Connectivity module for integrating 3rd party commerce or ERP platforms with the Sitecore Experience Platform. Compatible with Sitecore Experience Platform 8.1 Update-1 through Update-3. For more information on alignment between releases of Sitecore Commerce and the Sitecore Experience Platform, see the [Sitecore Commerce Compatibility Table](https://kb.sitecore.net/articles/316437) - -Looking for a different version? Return to [all available 8.x versions](/downloads/Sitecore_Commerce) - -## Core Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Commerce Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20Connect/Secure/Sitecore%20Commerce%20Connect%208.1%20rev.%20160202.zip) | This is latest version of Sitecore Commerce Connect (Sitecore Commerce Connect 8.1 rev. 160202). | - | [Sitecore Commerce Connect 8.1 license check patch](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20Connect/Secure/Sitecore%20Commerce%20Connect%20License%20Check%20Patch%208.1%20rev.%20160627.zip) | Downloading and installing the package will remove the Sitecore.Commerce.Connect license check and message in Content Editor described in KB article 852031. Applies to Sitecore Experience Platform 8.1 update-2 and update-3. | - -## Optional Downloads - - | Resource | Description | - | --- | --- | - | [Commerce Connect Starter Kit](https://github.com/Sitecore/Commerce-Connect-StarterKit) | The Commerce Connect Starter Kit is a sample eCommerce site with a  plug-in for nopCommerce
| - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20Connect/Secure/Sitecore_Commerce_Connect_Release_notes_8_1.pdf) | Release notes for the Sitecore Commerce Connect 8.1, contains highlights, known issues, and breaking changes. | - | [Documentation](https://doc.sitecore.com) | Sitecore Documentation Portal with all Commerce documentation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/81/Sitecore_Commerce_81_powered_by_CS/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/81/Sitecore_Commerce_81_powered_by_CS/index.md deleted file mode 100644 index 7da646c23..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/81/Sitecore_Commerce_81_powered_by_CS/index.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: "Sitecore Commerce 8.1 powered by Commerce Server" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/81/Sitecore_Commerce_81_powered_by_CS.aspx ---- - -Sitecore's powered by Commerce Server product, compatible with Sitecore Experience Platform 8.1 Update-1 through Update-3. For more information on alignment between releases of Sitecore Commerce and the Sitecore Experience Platform, see the [Sitecore Commerce Compatibility Table](https://kb.sitecore.net/articles/316437) - -Looking for a different version? Return to [all available 8.x versions](/downloads/Sitecore_Commerce) - -## Core Downloads - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20CS/Secure/CommerceServer-11.3.507.0.exe) | Latest version of the Commerce Server Core (CommerceServer-11.3.507.0) | - | [Sitecore Commerce Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20CS/Secure/Sitecore%20Commerce%20Connect%208.1%20rev.%20160202.zip) | Latest version of Sitecore Commerce Connect (Sitecore Commerce Connect 8.1 rev. 160202) | - | [Sitecore Commerce Server Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20CS/Secure/Sitecore%20Commerce%20Server%20Connect%208.1%20rev.%208.1.539.0.update) | Latest version of Sitecore Commerce Server Connect (Sitecore Commerce Server Connect 8.1 rev. 8.1.539.0) | - | [Sitecore Merchandising Manager](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20CS/Secure/Sitecore%20Merchandising%20Manager%208.1%20rev.%208.1.543.0.update) | Latest version of the Sitecore Merchandising Manager for Sitecore powered by Commerce Server (Sitecore Merchandising Manager 8.1 rev. 8.1.543.0) | - | [Sitecore Reference Storefront for SCpbCS](https://github.com/Sitecore/Reference-Storefront/releases) | Sitecore Reference Storefront 8.1.x.0 (Sitecore Commerce powered by Commerce Server) | - -## Optional Downloads - - | Resource | Description | - | --- | --- | - | [Desktop Business Tools](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20CS/Secure/BusinessTools-11.3.507.0.exe) | Latest version of the Commerce Server Desktop Business Tools (BusinessTools-11.3.507.0) | - | [BizTalk Adapters](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20CS/Secure/BTSAdapters-11.3.507.0.exe) | Latest version of the BizTalk Adapters for Commerce Server (BTSAdapters-11.3.507.0) | - | [Commerce Server Partner SDK](https://marketplace.sitecore.net/Modules/Commerce_Server_Desktop_Business_Tools_SDK?sc_lang=en) | Source code for the Desktop Business Tools | - | [Commerce Server Sample Code](https://marketplace.sitecore.net/Modules/Commerce_Server_SDK?sc_lang=en) | Sample code for Commerce Server | - | [Sample Azure Cloud Service Deployment](https://marketplace.sitecore.net/Modules/S/Sitecore_Commerce_Server_Azure_Cloud_Service) | A sample PowerShell script that can be used to install and configure Commerce Server on an Azure Cloud Service | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](http://commercesdn.sitecore.net/SCpbCS81/releasenotes/en-us/index.html) | Release notes for Sitecore Commerce 8.1 powered by Commerce Server, contains highlights, known issues, and breaking changes. | - | [Documentation](https://doc.sitecore.com) | Sitecore Documentation Portal with all Commerce documentation. | - | [Sitecore Commerce Server Standalone Installation Guide](http://commercesdn.sitecore.net/SCpbCS81/SitecoreCommerceInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing and configuring Sitecore Commerce Server on a single computer for development or evaluation. | - | [Sitecore Commerce Desktop Business Tools Installation Guide](http://commercesdn.sitecore.net/SCpbCS81/SitecoreCommerceDesktopBusinessToolsInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing the Commerce Server Desktop Business Tools, which are shared between Sitecore Commerce powered by Commerce Server and Commerce Server. | - | [Sitecore Commerce BizTalk Adapters Installation Guide](http://commercesdn.sitecore.net/SCpbCS81/SitecoreCommerceBizTalkAdaptersInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing the BizTalk Adapters, which are used for connecting your Sitecore Commerce powered by Commerce Server or Commerce Server deployment to 3rd party ERP systems or B2B trading partners. | - -## Translations - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20CS/Secure/CommerceServer-11.3.508.0.exe) | Latest German (de-DE) version of Commerce Server | - | [Desktop Business Tools](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20CS/Secure/BusinessTools-11.3.508.0.exe) | Latest German (de-DE) version of the Commerce Server Desktop Business Tools | - | [BizTalk Adapters](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20CS/Secure/BTSAdapters-11.3.508.0.exe) | Latest German (de-DE) version of the BizTalk Adapters for Commerce Server | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/81/Sitecore_Commerce_81_powered_by_Microsoft_Dynamics_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/81/Sitecore_Commerce_81_powered_by_Microsoft_Dynamics_Initial_Release/index.md deleted file mode 100644 index 4ff0616af..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/81/Sitecore_Commerce_81_powered_by_Microsoft_Dynamics_Initial_Release/index.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: "Sitecore Commerce 8.1 powered by Microsoft Dynamics" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/81/Sitecore_Commerce_81_powered_by_Microsoft_Dynamics_Initial_Release.aspx ---- - -Sitecore's powered by Microsoft Dynamics commerce product, compatible with Sitecore Experience Platform 8.1 Update-1 through Update-3. Includes connectivity modules for integration with Microsoft Dynamics Retail AX 2012 R3 CU9. For more information on alignment between releases of Sitecore Commerce and the Sitecore Experience Platform, see the [Sitecore Commerce Compatibility Table](https://kb.sitecore.net/articles/316437) - -Looking for a different version? Return to [all available 8.x versions](/downloads/Sitecore_Commerce) - -## Core Downloads - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/CommerceServer-11.3.507.0.exe) | Latest version of the Commerce Server Core (CommerceServer-11.3.507.0) | - | [Sitecore Commerce Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/Sitecore%20Commerce%20Connect%208.1%20rev.%20160202.zip) | The latest version of Sitecore Commerce Connect (Sitecore Commerce Connect 8.1 rev. 160202) | - | [Sitecore Commerce Server Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/Sitecore%20Commerce%20Server%20Connect%208.1%20rev.%208.1.539.0.update) | The latest version of Sitecore Commerce Server Connect (Sitecore Commerce Server Connect 8.1 rev. 8.1.539.0) | - | [Sitecore Merchandising Manager](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/Sitecore%20Merchandising%20Manager%208.1%20rev.%208.1.543.0.update) | Latest version of the Sitecore Merchandising Manager for Sitecore powered by Commerce Server (Sitecore Merchandising Manager 8.1 rev. 8.1.543.0) | - | [Sitecore.Commerce.DynamicsIntegration.Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/Sitecore.Commerce.DynamicsIntegration.Connect.8.1.399.0.update) | Sitecore Commerce DynamicsIntegration Connect 8.1.399.0 is a set of Sitecore Commerce Connect processors that implement transactional connectivity with Dynamics AX for Retail. | - | [Sitecore.Commerce.DynamicsIntegration.TransactionService](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/Sitecore.Commerce.DynamicsIntegration.TransactionService.8.1.399.0.update) | Sitecore Commerce DynamicsIntegration TransactionService 8.1.399.0 provides a wrapper around the Dynamics Transaction allowing the separation of transaction functionality from storefront functionality.  The Transaction Service leverages the Dynamics Retail SDK so source code is provided to enable customers to assimilate newer versions of the SDK as they become available. | - | [Sitecore.Commerce.DynamicsIntegration.Routing](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/Sitecore.Commerce.DynamicsIntegration.Routing.8.1.399.0.update) | Sitecore Commerce DynamicsIntegration Routing 8.1.399.0 a set of specific routing processors that plug into the Routing Framework to enable synchronization of Product Catalog data from Dynamics to the Sitecore Commerce Server Catalog edge catalog. This is also available as an SDK, below. | - | [Sitecore.Commerce.RoutingFramework](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/Sitecore.Commerce.RoutingFramework.8.1.399.0.update) | Sitecore Commerce RoutingFramework 8.1.399.0 is a sample basic framework for extracting product catalog data from Microsoft Dynamics and transforming it into a form that the Commerce Server Catalog understands.  Can also automate synchronization completely by importing the resulting file into Commerce Server's Catalog system. This is also available as an SDK, below. | - | [Sitecore Reference Storefront for SCpbMD](https://github.com/Sitecore/Reference-Storefront/releases) | Sitecore Reference Storefront 8.1.478.0  for Sitecore Commerce powered by Microsoft Dynamics ® | - -## Optional Downloads - - | Resource | Description | - | --- | --- | - | [Contoso Image Files for Sitecore Reference Storefront](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/ContosoImages-1.update) | Contoso image files for Sitecore Reference Storefront Powered by Microsoft Dynamics ® in a Sitecore update package | - | [TransactionService SDK](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/TransactionService.8.1.399.0.zip) | Transaction Service provides a wrapper around Dynamics Transaction allowing the separation of transaction functionality from storefront functionality.  The Transaction Service leverages the Dynamics Retail SDK so source code is provided to enable customers to assimilate newer versions of the SDK as they become available. | - | [Routing.Framework SDK](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/Routing.Framework.Sdk.8.1.399.0.zip) | Sample basic framework for extracting product catalog data from AX and transforming it into a form that the Commerce Server Catalog understands.  Can also automate synchronization completely by importing the resulting file into Commerce Server's Catalog system. | - | [DynamicsRetail.Routing SDK](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/DynamicsRetail.Routing.8.1.399.0.zip) | Dynamics Retail specific routing processors that plug into the Routing Framework to enable synchronization of Product Catalog data from Dynamics to the Sitecore Commerce Server Catalog edge catalog. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](http://commercesdn.sitecore.net/SCpbmd81/releasenotes/en-us/index.html) | Release notes for the Sitecore Commerce 8.1 powered by Microsoft Dynamics ®, contains highlights, known issues, and breaking changes. | - | [Documentation](https://doc.sitecore.com) | Sitecore Documentation Portal with all Commerce documentation. | - | [Sitecore Commerce Server Standalone Installation Guide](http://commercesdn.sitecore.net/SCpbCS81/SitecoreCommerceInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing and configuring Commerce Server on a single computer for development or evaluation. These instructions provide a minimal configuration to enable a developer or system administrator to install Commerce Server. | - -## Translations - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%2081%20powered%20by%20Microsoft%20Dynamics%20Initial%20Release/Secure/CommerceServer-11.3.508.0.exe) | Latest German (de-DE) version of Commerce Server. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/81/Sitecore_Commerce_Server_113/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/81/Sitecore_Commerce_Server_113/index.md deleted file mode 100644 index 7ebe18aa0..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/81/Sitecore_Commerce_Server_113/index.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: "Commerce Server 11.3" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/81/Sitecore_Commerce_Server_113.aspx ---- - -Stand-alone version of Commerce Server available for existing customers. - -Looking for a different version? Return to [all available 11.x versions](/downloads/Sitecore_Commerce) - -## Core Downloads - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%20Server%20113/Secure/CommerceServer-11.3.507.0.exe) | Latest version of the Commerce Server Core (CommerceServer-11.3.507.0) | - -## Optional Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Commerce Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%20Server%20113/Secure/Sitecore%20Commerce%20Connect%208.1%20rev.%20160202.zip) | Latest version of Sitecore Commerce Connect (Sitecore Commerce Connect 8.1 rev. 160202) | - | [Sitecore Commerce Server Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%20Server%20113/Secure/Sitecore%20Commerce%20Server%20Connect%208.1%20rev.%208.1.539.0.update) | Latest version of Sitecore Commerce Server Connect (Sitecore Commerce Server Connect 8.1 rev. 8.1.539.0) | - | [Sitecore Merchandising Manager](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%20Server%20113/Secure/Sitecore%20Merchandising%20Manager%208.1%20rev.%208.1.543.0.update) | Latest version of the Sitecore Merchandising Manager for Sitecore powered by Commerce Server (Sitecore Merchandising Manager 8.1 rev. 8.1.543.0) | - | [Desktop Business Tools](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%20Server%20113/Secure/BusinessTools-11.3.507.0.exe) | Latest version of the Commerce Server Desktop Business Tools (BusinessTools-11.3.507.0) | - | [BizTalk Adapters](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%20Server%20113/Secure/BTSAdapters-11.3.507.0.exe) | Latest version of the BizTalk Adapters for Commerce Server (BTSAdapters-11.3.507.0) | - | [Commerce Server Partner SDK](https://marketplace.sitecore.net/Modules/Commerce_Server_Desktop_Business_Tools_SDK?sc_lang=en) | Source code for the Desktop Business Tools | - | [Commerce Server Sample Code](https://marketplace.sitecore.net/Modules/Commerce_Server_SDK?sc_lang=en) | Sample code for Commerce Server | - | [Sample Azure Cloud Service Deployment](https://marketplace.sitecore.net/Modules/S/Sitecore_Commerce_Server_Azure_Cloud_Service) | A sample PowerShell script that can be used to install and configure Commerce Server on an Azure Cloud Service | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](http://commercesdn.sitecore.net/SCpbCS81/releasenotes/en-us/index.html) | Release notes for Sitecore Commerce Server 11.3, contains highlights, known issues, and breaking changes. | - | [Documentation](https://doc.sitecore.com) | Sitecore Documentation Portal with all Commerce documentation. | - | [Sitecore Commerce Server Standalone Installation Guide](http://commercesdn.sitecore.net/SCpbCS81/SitecoreCommerceInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing and configuring Commerce Server on a single computer for development or evaluation. These instructions provide a minimal configuration to enable a developer or system administrator to install Commerce Server. | - | [Sitecore Commerce Desktop Business Tools Installation Guide](http://commercesdn.sitecore.net/SCpbCS81/SitecoreCommerceDesktopBusinessToolsInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing the Commerce Server Desktop Business Tools, which are shared between Sitecore Commerce powered by Commerce Server and Commerce Server. | - | [Sitecore Commerce BizTalk Adapters Installation Guide](http://commercesdn.sitecore.net/SCpbCS81/SitecoreCommerceBizTalkAdaptersInstallationGuide/en-us/index_frames.html) | This document provides instructions for installing the BizTalk Adapters, which are used for connecting your Sitecore Commerce powered by Commerce Server or Commerce Server deployment to 3rd party ERP systems or B2B trading partners. | - -## Translations - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%20Server%20113/Secure/CommerceServer-11.3.508.0.exe) | Latest German (de-DE) version of Commerce Server | - | [Desktop Business Tools](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%20Server%20113/Secure/BusinessTools-11.3.508.0.exe) | Latest German (de-DE) version of the Commerce Server Desktop Business Tools | - | [BizTalk Adapters](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/81/Sitecore%20Commerce%20Server%20113/Secure/BTSAdapters-11.3.508.0.exe) | Latest German (de-DE) version of the BizTalk Adapters for Commerce Server. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/82/Commerce_Server_114/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/82/Commerce_Server_114/index.md deleted file mode 100644 index 28d158d9a..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/82/Commerce_Server_114/index.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: "Commerce Server 11.4" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/82/Commerce_Server_114.aspx ---- - -Stand-alone version of Commerce Server available for existing customers. - -Looking for a different version? Return to [all available 11.x versions](/downloads/Sitecore_Commerce) - -## Core Downloads - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Commerce%20Server%20114/Secure/CommerceServer-11.4.148.exe) | Commerce Server 11.4.148. Sitecore Commerce Server core components. | - -## Optional Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Commerce Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Commerce%20Server%20114/Secure/Sitecore%20Commerce%20Connect%208.2.273.zip) | Sitecore Commerce Connect 8.2.273. A Sitecore Commerce integration layer component used for integrating other Commerce Server components with the Sitecore Experience Platform. Required when deploying the Sitecore Merchandising Manager. | - | [Sitecore Commerce Server Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Commerce%20Server%20114/Secure/Sitecore%20Commerce%20Server%20Connect.8.2.225.update) | Sitecore Commerce Server Connect 8.2.225. A Sitecore Commerce integration layer component used for integrating specific Sitecore Commerce functions with Commerce Server Connect, and therefore with the Sitecore Experience Platform. Required when deploying the Sitecore Merchandising Manager. | - | [Sitecore Merchandising Manager](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Commerce%20Server%20114/Secure/Sitecore%20Merchandising%20Manager.8.2.165.update) | Sitecore Merchandising Manager 8.2.165. A unified Web based environment for merchandiser or marketing managers to manage their commerce related business data. | - | [Desktop Business Tools](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Commerce%20Server%20114/Secure/BusinessTools-11.4.148.exe) | Desktop Business Tools 11.4.148. A business tool suite used with the Commerce Server stand-alone product. This tool suite is included in the Commerce Server download (above) and also provided here for deploying on hardware separate from Commerce Server. | - | [BizTalk Adapters](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Commerce%20Server%20114/Secure/BTSAdapters-11.4.148.exe) | BizTalk Adapters 11.4.148. A Sitecore Commerce abstraction layer component used to integrate the Commerce Server stand-alone product with a 3rd party system such as an ERP. These adapters are included in the Commerce Server download (above) and also provided here for deploying on hardware separate from Commerce Server. | - | [Commerce Server SDK](https://marketplace.sitecore.net/Modules/C/Commerce_Server_SDK) | A number of Commerce Server code samples for working with BizTalk Adapters, developing Commerce Server Pipelines (*.pcf files), extending the Order System, and creating a catalog xml file. | - | [Desktop Business Tools SDK](https://marketplace.sitecore.net/Modules/C/Commerce_Server_Desktop_Business_Tools_SDK) | Source code and documentation to enable customizing the Desktop Business Tools. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](http://commercesdn.sitecore.net/SCpbCS82/releasenotes/en-us/index.html) | Release notes for releases 8.x of Sitecore Commerce powered by Commerce Server, including corresponding Commerce Server stand-alone releases. | - | [Documentation](https://doc.sitecore.com) | Sitecore Documentation Portal with all Commerce documentation. | - | [Commerce Server Stand-alone Installation Guide](http://commercesdn.sitecore.net/SCpbCS82/SitecoreCommerceInstallationGuide/en-us/index_frames.html) | Instructions for installing Commerce Server on a single computer for development or evaluation. | - | [Desktop Business Tools Installation Guide](http://commercesdn.sitecore.net/SCpbCS82/SitecoreCommerceDesktopBusinessToolsInstallationGuide/en-us/index_frames.html) | Instructions for installing the Commerce Server Desktop Business Tools on a single computer. | - | [BizTalk Adapters Installation Guide](http://commercesdn.sitecore.net/SCpbCS82/SitecoreCommerceBizTalkAdaptersInstallationGuide/en-us/index_frames.html) | Instructions for installing the Commerce BizTalk Adapters on a single server. | - -## Translations - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Commerce%20Server%20114/Secure/CommerceServer-11.4.149.exe) | Commerce Server 11.4.149. German (de-DE) version of the Commerce Server download (above). | - | [Desktop Business Tools](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Commerce%20Server%20114/Secure/BusinessTools-11.4.149.exe) | Desktop Business Tools 11.4.149. German (de-DE) version of the Desktop Business Tools download (above). | - | [BizTalk Adapters](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Commerce%20Server%20114/Secure/BTSAdapters-11.4.149.exe) | BizTalk Adapters 11.4.149. German (de-DE) version of the BizTalk Adapters download (above). | - | [Merchandising Manager](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Commerce%20Server%20114/Secure/Merchandising_Manager_ja-JP.XML) | Japanese translations XML file for the Merchandising Manager download (above). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/82/Sitecore_Commerce_82_Connect/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/82/Sitecore_Commerce_82_Connect/index.md deleted file mode 100644 index 29c606673..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/82/Sitecore_Commerce_82_Connect/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Sitecore Commerce 8.2 Connect" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/82/Sitecore_Commerce_82_Connect.aspx ---- - -Connectivity module for integrating 3rd party commerce or ERP platforms with the Sitecore Experience Platform.  - -Two package versions are available on this page, the initial release and the latest. Select the version that aligns with the version of the Sitecore Experience Platform you are deploying. For more information on alignment between releases of Sitecore Commerce and the Sitecore Experience Platform, see the [Sitecore Commerce Compatibility Table](https://kb.sitecore.net/articles/316437) - -Looking for a different version? Return to [all available 8.x versions](/downloads/Sitecore_Commerce) - -## Core Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Commerce Connect - latest](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20Connect/Secure/Sitecore%20Commerce%20Connect%208.2.326.zip) | Sitecore Commerce Connect 8.2.326. This is the latest 8.2 package, compatible with Sitecore XP 8.2 Initial Release and later. | - | [Sitecore Commerce Connect - initial release](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20Connect/Secure/Sitecore%20Commerce%20Connect%208.2.273.zip) | Sitecore Commerce Connect 8.2.273. This is the initial release, compatible with Sitecore XP 8.2 Initial Release only. | - -## Optional Downloads - - | Resource | Description | - | --- | --- | - | [Commerce Connect Starter Kit](https://github.com/Sitecore/Commerce-Connect-StarterKit) | A sample B2C retail store front that shows how to create and integrate a custom connector into Commerce Connect. This StarterKit project is hosted on GitHub including its binaries, source code, license information. | - -## Release Downloads - - | Resource | Description | - | --- | --- | - | [Release Notes](http://commercesdn.sitecore.net/SitecoreCommerceConnect/ReleaseNotes/en-us/index.html) | Release notes for Sitecore Commerce 8.2 Connect. | - | [Documentation](https://doc.sitecore.com) | Sitecore Documentation Portal with all Commerce documentation. | - | [Sitecore Connect 8.1 to 8.2 Config Changes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20Connect/Non-secure/Sitecore_Connect_81_82_Config_Changes.pdf) | List of changes made to the Sitecore Commerce Connect configuration files between version 8.1 and 8.2. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/82/Sitecore_Commerce_82_powered_by_Microsoft_Dynamics/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/82/Sitecore_Commerce_82_powered_by_Microsoft_Dynamics/index.md deleted file mode 100644 index 7549ab0dd..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/82/Sitecore_Commerce_82_powered_by_Microsoft_Dynamics/index.md +++ /dev/null @@ -1,60 +0,0 @@ ---- -title: "Sitecore Commerce 8.2 powered by Microsoft Dynamics" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/82/Sitecore_Commerce_82_powered_by_Microsoft_Dynamics.aspx ---- - -Sitecore's powered by Microsoft Dynamics commerce product, compatible with Sitecore Experience Platform 8.2 Initial Release through Update-5. Includes connectivity modules for integration with Microsoft Dynamics Retail AX 2012 R3 CU10. - -This page includes the latest available Commerce 8.2 downloads. Where specifically stated, downloads have been updated since the Initial Release to maintain compatibility with Sitecore XP. More information on alignment between Sitecore Commerce 8.2 and Sitecore XP 8.2 update releases is provided in the [Sitecore Commerce Compatibility Table](https://kb.sitecore.net/articles/316437) - -Looking for a different version? Return to [all available 8.x versions](/downloads/Sitecore_Commerce) - -## Core Downloads - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/CommerceServer-11.4.148.exe) | Sitecore Commerce Server 11.4.148. Sitecore Commerce Server core components. | - | [Sitecore Commerce Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/Sitecore%20Commerce%20Connect%208.2.326.zip) | Sitecore Commerce Connect 8.2.326. This is an updated version since Commerce 8.2 Initial Release. See the **Previous Versions** section below to download the original version that works with Sitecore XP 8.2 Initial Release. Connect is a Sitecore Commerce integration layer component used for integrating other Commerce Server components with the Sitecore Experience Platform. | - | [Sitecore Commerce Server Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/Sitecore%20Commerce%20Server%20Connect.8.2.225.update) | Sitecore Commerce Server Connect  8.2.225. A Sitecore Commerce integration layer component used for integrating specific Sitecore Commerce functions with Commerce Server Connect, and therefore with the Sitecore Experience Platform. | - | [Sitecore Merchandising Manager](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/Sitecore%20Merchandising%20Manager.8.2.172.update) | Sitecore Merchandising Manager 8.2.172. Merchandising Manager is a unified Web based environment for merchandiser or marketing managers to manage their commerce related business data. | - | [Sitecore Commerce DataExchange Core](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/Sitecore.Commerce.DataExchange.Core.8.2.171.update) | Sitecore Commerce DataExchange Core 8.2.171. A set of processors that map Microsoft Dynamics data to the Commerce Server Catalog subsystem. This Data Exchange Core package contains components that can apply across Microsoft Dynamics releases. | - | [Sitecore Commerce DynamicsIntegration Connect](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/Sitecore.Commerce.DynamicsIntegration.Connect.8.2.117.update) | Sitecore Commerce DynamicsIntegration Connect 8.2.117. A set of Sitecore Commerce Connect processors that implement transactional connectivity with Microsoft Dynamics Retail. | - | [Sitecore Commerce DynamicsIntegration TransactionService](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/Sitecore.Commerce.DynamicsIntegration.TransactionService.8.2.117.update) | Sitecore Commerce DynamicsIntegration TransactionService 8.2.117. A wrapper around the Microsoft Dynamics Transaction Service, enabling the separation of transaction functionality from storefront functionality. | - | [Sitecore Commerce DataExchange Providers DynamicsRetail](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/Sitecore.Commerce.DataExchange.Providers.DynamicsRetail.8.2.171.update) | Sitecore Commerce DataExchange Providers DynamicsRetail 8.2.171. Release-specific Data Exchange components, in this case applicable to Microsoft Dynamics AX6.  | - | [Sitecore Reference Storefront for SCpbMD](https://github.com/Sitecore/Reference-Storefront/releases) | Sitecore Reference Storefront 8.2.518. The Storefront is a sample B2C retail store front template that can be used as a starting point for building a customized site. The Sitecore Reference Storefront project is hosted on GitHub including its binaries, source code, license information, and documentation. | - | [Contoso Image Files for Sitecore Reference Storefront](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/ContosoImages-1.update) | Contoso Images 1.0.0. Image files for Sitecore Reference Storefront Powered by Microsoft Dynamics in a Sitecore Update package. | - -## Optional Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Commerce Server Connect Publishing Extensions](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/Sitecore%20Commerce%20Server%20Connect%20Publishing%20Extensions.8.2.225.update) | Sitecore Commerce Server Connect Publishing Extensions 8.2.225. Extensions that enable staging of Commerce Server projects as part of the new Sitecore Experience Platform's Publishing Service module. | - | [DataExchange Commerce SDK](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/DataExchange.Commerce.Sdk.8.2.171.zip) | DataExchange Commerce SDK 8.2.171. Development kit pertaining to the DataExchange Providers DynamicsRetail package (above). | - | [Connect DynamicsRetail SDK](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/Connect.DynamicsRetail.8.2.117.zip) | Connect DynamicsRetail 8.2.117. Development kit pertaining to the DynamicsIntegration Connect package (above). | - | [Transaction Service SDK](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/TransactionService.8.2.117.zip) | Transaction Service 8.2.117. Development kit pertaining to the DynamicsIntegration TransactionService package (above). | - | [Ecommerce SDK](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/EcommerceSdK.6.3.3000.zip) | Ecommerce SDK 6.3.3000. Development kit comprising a redistribution of Microsoft’s Retail SDK plus Sitecore’s multi-channel functionality extensions. | - -## Resource Information - - | Resource | Description | - | --- | --- | - | [Release Notes](http://commercesdn.sitecore.net/SCpbMD82/ReleaseNotes/en-us/index.html) | Release notes for releases 8.x of Sitecore Commerce powered by Microsoft Dynamics. | - | [Documentation](https://doc.sitecore.com) | Sitecore Documentation Portal with all Commerce documentation. | - | [Reference Storefront Setup Guide](http://commercesdn.sitecore.net/SCpbMD82/SCpbMDRefSfGuide/en-us/index_frames.html) | Install guide for the Reference Storefront, including its dependent Sitecore Commerce powered by Microsoft Dynamics components. | - -## Translations - - | Resource | Description | - | --- | --- | - | [Commerce Server](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/CommerceServer-11.4.149.exe) | Commerce Server 11.4.149. German version of the Commerce Server download (above). | - | [DataExchange Core de-DE](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/DataExchange_Core_de-DE.xml) | German translations XML file for the DataExchange Core download (above). | - | [DynamicsIntegration Connect de-DE](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/DynamicsIntegration_Connnect_AX6_AX7_de-DE.xml) | German translations XML file for the DynamicsIntegration Connect download (above). | - | [DataExchange Providers DynamicsRetail de-DE](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/DataExchange_Providers_DynamicsRetail_AX6_AX7_de-DE.xml) | German translations XML file for the AX6 DataExchange Providers DynamicsRetail download (above). | - | [Merchandising Manager](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/Merchandising_Manager_ja-JP.XML) | Japanese translations XML file for the Merchandising Manager download (above). | - -## Previous Versions - - | Resource | Description | - | --- | --- | - | [Sitecore Commerce Connect - initial release](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/82/Sitecore%20Commerce%2082%20powered%20by%20Microsoft%20Dynamics/Secure/Sitecore%20Commerce%20Connect%208.2.273.zip) | Sitecore Commerce Connect 8.2.273. This is the version released with the Sitecore Commerce 8.2 powered by Commerce Server Initial Release. Use this version if deploying with Sitecore XP 8.2 Initial Release, not the latest Connect version.
| \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/821/Sitecore_Commerce_821/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/821/Sitecore_Commerce_821/index.md deleted file mode 100644 index a2f95c30b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/821/Sitecore_Commerce_821/index.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: "Sitecore Commerce 8.2.1 Initial Release" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/821/Sitecore_Commerce_821.aspx ---- - -This is Sitecore's new Commerce product, simply named Sitecore Commerce. This is a new product, not an update to 8.2. This initial launch is compatible with Sitecore Experience Platform 8.2 Update-1 and Update-2. More information on alignment between Sitecore Commerce and Sitecore XP update releases is provided in the [Sitecore Commerce 8 Compatibility Table](https://kb.sitecore.net/articles/316437) - -Sitecore Commerce Connect is no longer packaged as a separate product. To access it, download the full Sitecore Commerce release package and extract only the Sitecore Commerce Connect 10.0.174.zip file. - -Return to [all available versions](/downloads/Sitecore_Commerce) - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Commerce release package 1.0.20](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/821/Sitecore%20Commerce%20821/Secure/SitecoreCommerce8.2.1_1.0.20.zip) | A zip file containing all the core and optional Sitecore Commerce components. Does not include the dependent Sitecore XP software; which is available on the [Sitecore Experience Platform downloads page](/downloads/Sitecore_Experience_Platform). | - | [Reference Storefront source code](https://github.com/Sitecore/Reference-Storefront/releases/tag/10.0.853) | Link to the Sitecore Reference Storefront 10.0.853 source code on GitHub, which corresponds to the Sitecore Commere 8.2.1 Initial Release. Note that the Storefront installation packages (.update packages) are available in the Sitecore Commerce release package (above). | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](http://commercesdn.sitecore.net/SitecoreCommerce/ReleaseNotes/en-us/index.html) | Cumulative release notes for the Sitecore Commerce 8.2.1 release and its updates. | - | [Deployment Guide](http://commercesdn.sitecore.net/SitecoreCommerce/DeploymentGuide/en-us/index.html) | Instructions for installing Sitecore Commerce Server 8.2.1 on a single computer in a simple configuration, such as for demonstration or development. | - | [Documentation](https://doc.sitecore.com) | Link to Sitecore Commerce documentation on Sitecore's Documentation Portal. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Initial_Release/Release_Notes.md deleted file mode 100644 index 972ab60f0..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,97 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Initial_Release/Release_Notes ---- - -**January 2018 - released Sitecore Experience Commerce 9.0 Initial Release** - - | UPDATE FEB 01 - | Published a new  **Packages for On Premises 2018.01-2.0.254**  release package, fixing an incorrect URL for the public Sitecore XC myget feed. No other changes were made.Please download the latest release package, or instead correct the URL directly in your original release package as follows:
- In package  **Sitecore.Commerce.Engine.SDK.2.0.1922.zip**  open file  **nuget.config**
- On row 6 remove URL:  **https://sitecore.myget.org/F/sc-commerce-preview/api/v3/index.json**
- Replace URL with:  **https://sitecore.myget.org/F/sc-commerce-packages/api/v3/index.json** | - -## New feature/improvements - - | Area | Description | - | --- | --- | - | Branding | New Sitecore Experience Commerce (Sitecore XC) branding, applicable starting in release 9.0. | - | Commerce services | New Catalog, Inventory, and Customer subsystems. | - | Business Tools | New single-page business tools application for all business tools, launched from the Sitecore dashboard. It has been developed wtih Angular 4. The contents are driven from within the Commerce Engine plugins, so changes are easy for developers to make. | - | Storefront | New Storefront solution based on the Sitecore Experience Accelerator (SXA) module, comprising:
- Sitecore Commerce Foundation (foundation layer)
- 40+ Commerce components for SXA (feature layer)
- A storefront site template consisting of SXA-based pages and commerce components (project layer)
- Two pre-defined themes: Storefront Mock-up and Storefront Branded | - | Connect | Commerce Connect continues to be embedded in Sitecore XC. It has been rebuilt and updated:
- Personalization rules and service layers from the 8.2.1 release have been included, except Product Synchronization.
- The engagement data stored with page events, goals, and outcomes has been encapsulated in PoCo objects and converters as required in xDB. | - | Connect | A new currency provider interface has been introduced in Commerce Connect that allows the selected currency to be passed to the Commerce Engine implicitly on all calls. Some method calls accept currecy to be explicitly provided as parameter and, if provided, will take precedence. The SXA Storefront implements the interface and the currency configured in control panel is passed on to the Commerce Engine. | - | Connect | In Commerce Connect, shopping cart line quantity has been converted from an Integer type to a Decimal to allow for fractions. | - -## Deprecated/removed - - | Area | Description | - | --- | --- | - | Commerce Server | The legacy Commerce Server product has been completely removed. Catalog, Inventory and Customer functionality has moved into the new Commerce Services. | - | CS Connect - | Commerce Server Connect (CS Connect) has been removed. Applicable functionality has moved to Commerce Engine Connect (CE Connect).
| - | Business Tools | The Merchandising Manager, Pricing and Promotions Manager, and Customer and Order Manager have been removed. They have been replaced with the new Business Tools application. | - | Storefront | The Sitecore Reference Storefront has been removed, replaced by the new SXA Storefront. | - -## Resolved issues - - | Description | Customer ticket ID | Internal ID | - | --- | --- | --- | - | ValidateSitecoreConnectionBlock returns false when sitecore/content/home item is removed | 498417 | 34646 | - | Initialize cart on adding a promomotion code | 498402 | 34622/34580 | - | IsShopNameCondition is case-sensitive | 498012 | 34576 | - | Unnecessary warning OrderHasNoOnHoldComponent while putting an order on hold | 489465 | 32709 | - | Promotions able to store absolute values, not only a percent (a discount) | 484832 | 27689 | - | Engine Connect must be able to use different currencies but not only the default one | 486306/486326 | 28646/32431 | - | It is not possible to set price more than 999 via the "Update List Price" in the "MERCHANDISING MANAGER" | 494834 | 32313 | - | Media prefix is hard coded for the images in the Merchandising Manager | 494394 | 32143 | - | Categories for a base catalog are not displayed if there is not the "en-US" language for this catalog | 490897 | 30773 | - | Customer and Order Manager does not update First/Last Name on the CF Site | 491982 | 23743 | - | Sitecore Commerce PricingServiceProvider error when attempting to get price for a variant with same VariantId value as parent product's ProductId | 484755/494883 | 28460 | - | Incorrect numbers in Customer and Order Manager when .Net Globalization culture is non-English | 496926, 497185 | 33736 | - | Customer and Order Manager should show dates in same time zone | 495429 | 32806/32807 | - | Sitecore Commerce Engine sends many authentication web api requests during startup | 495371 | 32629/32630 | - | Slow checkout when you have many countries configured | 489515 | 31822 | - | Adding an Item to a Cart and then subsequently deleting that item from the Catalog causes the Cart to no longer open | 488385 | 28574 | - | XP disablers (EventDisasbler, SecurityDisabler) are thread sticky | 488959 | 173499 | - -## Incomplete - coming in a release update - - | Area | Description | Internal ID | - | --- | --- | --- | - | Catalog schema | The generalized default Catalog system schema - for products ("sellable items"), Catagories, and Catalogs - cannot be modified from the Business Tools. Instead, [this KB article](https://kb.sitecore.net/articles/083614) describes how you can extend the schema through components. | 35019 | - | Connect | Commerce reports for Experience Profile and Experience Analytics | 113053 | - | Connect | Commerce-specific Marketing Automation Campaigns (formerly called Engagement Automation Plans):
- Abandonned Cart
- New Order Placed
- Product Back in Stock
The Commerce-specific pipelines and listers etc. needed for these Marketing Automation Campaigns have not been completed. | 198730, 198736 | - | Connect | Product Synchronization in the Connect service layer; this code has been temporarily removed until it is rebuilt for the 9.0 stack. | 191310 | - | Upgrade | The 8.x to 9.0 Upgrade and Migration feature has not been completed; it will completed in a future release. Included in this release:
- Commerce Engine 8.2.1 to 9 upgrade: a plugin for upgrading Entity Lists, including the ability to inject custom upgrade logic.
- A web service for performing import/export of Catalog entities, and a Postman sample for invoking the service.
Excluded from this release:
- Migration tool for Catalog data and Inventory data, for mapping legacy schemas to the Commerce Engine.
- Migration tool for analytics data stored in xDB. | 34870 | - -## Known issues - - | Area | Description | Internal ID | - | --- | --- | --- | - | Connect | In order to fully support xConnect, Commerce Connect introduces breaking changes mostly around the domain models that come with the APIs. For more information see the Commerce Connect Developer's Guide, located on the Sitecore Experience Commerce page of doc.sitecore.net. | 196979 | - | Business Tools | Business Tools Home button (grid icon in upper left corner) on the Launch Pad navigates the user back to the root of the Commerce tools, whereas the user may expect to be taken back to the Sitecore Launch Pad. | 34419 | - | Business Tools | Unable to configure business user authorization by entities, for example by specific regional catalog or promotion book. This is because the new Business Tools live outside of the Sitecore app space, so it was necessary to provide a new authentication mechanism. The new Identity Server is provided as part of the Commerce release package which communicates with the Membership Provider within Sitecore to grant role-based access to the business tools. | N/A | - | Storefront | Cross-brower support is not fully implemented. The solution has been developed and tested on Google Chrome. Mozilla Firefox is very close to being fully supported, with a few exceptions like no mock images appear in place of product images when applying the 'Storefront Mock-up with mock images' theme. | 35136 | - | Storefront | It is not possible to put presentations directly on Catalog items in Sitecore and target them directly in the browser. | 36076 | - | Storefront | The SXA Carousel component on Storefront home page is not always displayed on the first slide of the carousel. When the carousel is showing the first slide (query parameter "Carousel=0") and the customer navigates to another page and back again, the carousel slide will not show up again. | 35271 | - | Storefront | Promoted products on the Storefront home page under headingOn Sale Televisions turns up empty. This is due to the query being used is targeting index field OnSale, which is not present in the index. Workaround: update the query to not target the OnSale field. | 36074 | - | Storefront | Using virtual directories when creating and configuring SXA Storefront sites in SXA is not fully working correctly. | 35904, 34712, 35725 | - | Storefront | Related products do not display on the product detail page even though the component is inserted on the page. This is because the fieldscontaining links to related products of different types changed on the product template and from the data provider in CE Connect. The Related Products component is targetingthe wrong field. | 32104 | - | Storefront | Lacking JsonAntiForgeryToken implementation for all controllers and actions in Storefront solution | 33062 | - | Storefront | Registered commerce users on different sites could login to all Storefront sites. Commerce Connect by default only recognize one security domain in Sitecore whereas each site should have it's own separate domain. Workaround: change the implementation of the User and Customer repositories to work with individual domains per site. | 34064 | - | Storefront | Creating storefront sites when in another language than English will have some parts of the content turn up in English anyway. | 35907 | - | Storefront | Tier-1 language translation files: Japanese, German, Chinese and Danish are not included in the release package. These files will be added after the release, as separate download files on the Sitecore XC 9.0 Initial Release page on dev.sitecore.net. | 26941 | - | Deployment | Deploy-Sitecore-Commerce.ps1 has incorrect path forSXAStorefrontCatalogModuleFullPath. Should be ..\Sitecore Commerce Experience Accelerator Habitat Catalog*.zip based on extracted files in package | 36046 | - | Deployment | Deploy-Sitecore-Commerce.ps1 has incorrect path for SitecoreCommerceEngineZipPath. Should be ..\Sitecore.Commerce.Engine.2.*.zip based on deployment guide instructions | 36046 | - | Deployment | The following error is returned when running Deploy-Sitecore-Commerce.ps1 when trying to deploy the Storefront:  "Error occurred: The remote server returned an error: (424) Method Failure...".  This error message can be ignored.
| 35894 | - | Deployment | Deploying to an Azure App Service may fail intermittently when deploying all of Sitecore XP, Sitecore XC, SXA, and SXA Storefront, and when "deployExmDds" is set to true. This occurs because the bootloader does not correctly remove the locks after has finished processing. Workaround: remove “App_Data\Maintenance_lock”. And if it exists, remove file "app_offline.htm". And, if file "default.htm" gets renamed to "default.htm.sitedown" then rename it back to "default.htm". | 32606 | - | App Compat | Sitecore XC 9 does not support Windows Server 2012 (even though Sitecore XP does). | 32831 | - -## Compatibility - -Refer to the Installation Guides (On Premises or Azure App Service) for software pre-requisites. - - - - | The Commerce Server Connect (CS Connect) package has also been removed. Applicable functionality has been moved to Commerce Engine Connect (CE Connect). | - - | The Commerce Server Connect (CS Connect) package has also been removed. Applicable functionality has been moved to Commerce Engine Connect (CE Connect). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Initial_Release/index.md deleted file mode 100644 index b925a2cc6..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Initial_Release/index.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: "Sitecore Experience Commerce 9.0 Initial Release" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Initial_Release.aspx ---- - -Sitecore's latest commerce platform with new Catalog management, new Inventory management, new Business Tools, new Storefront built on the latest Sitecore Experience Accelerator (SXA), native integration with Sitecore Experience Platform 9, and new Sitecore Experience Commerce™ (Sitecore XC) branding to match. - -Sitecore XC 9.0 Initial is compatible with Sitecore XP 9.0 Update-1. Refer to the [Sitecore Experience Commerce 9 Compatibility Table](https://kb.sitecore.net/articles/804595) or Installation Guides for the software and version prerequisites. - -Sitecore Commerce Connect is no longer packaged as a separate product. To access it, download the full Packages for On Premises and extract only the Sitecore Commerce Connect Core 11.0.192.zip file. Note that at this time, the product synchronization feature is not implemented as stated in Release Notes. - -Return to [all available versions](/downloads/Sitecore_Commerce) - -## Download options - - | Resource | Description | - | --- | --- | - | [Packages for On Premises 2018.01-2.0.254](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Initial%20Release/Secure/Sitecore.Commerce.2018.01-2.0.254.zip) | The Commerce packages and supporting software development kits (SDK) for on-premises or hosted virtual machine deployments.Update Feb 1, 2018: Published a new release package fixing an incorrect URL for the public Sitecore XC myget feed. See Release Notes below for details. | - | [Packages for Azure App Service 2018.01-2.0.254](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Initial%20Release/Secure/Sitecore.Commerce.Azure.2018.01-2.0.254.zip) | The Commerce web deploy packages (WDPs) for deployment to a Microsoft Azure App Service. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Initial_Release/Release_Notes) | New feature/improvements, deprecated/removed, resolved issues, incomplete, known issues. | - | [Installation Guide - Azure App Service](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Initial%20Release/Sitecore-XC-9.0_Installation_Guide(Cloud).pdf) | Instructions for installing Sitecore XC to Microsoft Azure App Service. | - | [Installation Guide - On Prem](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Initial%20Release/Secure/Sitecore-XC-9.0_Installation_Guide(On-Prem).pdf) | | - | [Documentation](https://doc.sitecore.com) | Link to Sitecore XC documentation on Sitecore's Documentation portal. | - -## Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Initial%20Release/Secure/da-DK.xml) | Danish language translation file, for the Commerce Engine and Business Tools. Compatible with Sitecore Commerce Engine Connect 2.0.835. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Initial%20Release/Secure/de-DE.xml) | German language translation file, for the Commerce Engine and Business Tools. Compatible with Sitecore Commerce Engine Connect 2.0.835. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Initial%20Release/Secure/ja-JP.xml) | Japanese language translation file, for the Commerce Engine and Business Tools. Compatible with Sitecore Commerce Engine Connect 2.0.835. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update1/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update1/Release_Notes.md deleted file mode 100644 index 0056fe7be..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update1/Release_Notes.md +++ /dev/null @@ -1,102 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update1/Release_Notes ---- - -**March 2018 - released Sitecore Experience Commerce 9.0 Update-1** - -Sitecore XC 9.0 Update-1 is a corrective content release only; there are no new features. - -## Resolved issues - -The following table lists the most visible corrective content included in Update-1. Other less visible fixes were included also, but not listed here. - - | Area | Description | Identifier(s) | - | --- | --- | --- | - | Indexing | Indexing: After updating a sellable item in the Business Tools, the sellable item wes disappeared from the Storefront after the indexing strategy had run. | 36040 | - | Indexing | indexing: Incremental Sitecore indexing is not working, preventing finding results when | 35073 | - | Indexing | Indexing: Incremental indexing incorrectly altered fields being indexed, for example some fields went missing. | 36344 | - | Indexing | Incremental indexing for sellable items isn't completing; takes multiple iterations to work through products. | 36728 | - | Indexing | Indexing: The CatalogItemsIndex incremental indexing counter incorrectly reports 0 items indexed in Minion log file, instead of the actual number of index runs. | 36048 | - | Search | Azure search: When searching for a sellable item, the autocomplete functionality displays duplicate results of the item. | 35887 | - | Content Editor | Content Editor: In the Sitecore Content Editor, entering a product ID does not return the correct path to the product item. The correct path is only visible from the Business Tools UI. | 36035 | - | Content Editor | Content Editor: In the Content Editor, update a standard field for a product, but the change is not persisted in the Content Editor. In order to see the change, the Commerce caches need to be refreshed. | 36041 | - | Business Tools | Business Tools: Calendar display in Bus Tools dialog box gets cut off, requiring user to scroll down. | 32515 | - | Business Tools | The Autocomplete feature and associated association action incorrectly results in displaying the full product IDs. | 33790 | - | Business Tools | Business Tools: The merchandiser is unable to test a promotion in the authoring (CM) instance of Storefront, before it gets approved and implemented in the externally facing Storefront. | 34869 | - | Business Tools | Business Tools: Adding a price in German format gives error, "Invalid or missing value for property 'Price'." | 35292 | - | Business Tools | Business Tools: It is unclear how to deactivate a customer from the Customers section of the Business Tools. | 35424 | - | Business Tools | After the customer has completed a checkout including an Item level discount, the item level discount text is not displaying in the corresponding order in the Business Tools user interface. | 35476 | - | Business Tools | Business Tools: In the Business Tools Promotions section, there is no autocomplete functionality when searching. Users need to type the target item ID in the precise format. | 35604 | - | Business Tools | Business Tools: in the Add promotion dialog box it is difficult to distinguish Sellable Items from Variants in the search results. They should be more clearly distinguishable. | 35700 | - | Business Tools | Business Tools: unable to add a Sellable item after a previous invalid Sellable item has been removed. | 35979 | - | Business Tools | Busines Tools: "Undo Hold" does not undo a held order. It undoes the changes to a held order. Change this to "Undo Changes". | 36072 | - | Storefront - | On checkout billing page, when an invalid gift card number is entered, the field validation message is not present.
| 30364 - | - | Storefront - | Promoted Products: selecting a pre-defined list of products shows the entire content tree.
| 31677 - | - | Storefront - | On the minicart, when a line is removed from the Minicart, the Minicart collapses and the user is not able to see the animation or the removal of content.
| 31787 - | - | Storefront - | Related products are not showing correctly in Storefront's Product Detail page.
| 32104 - | - | Storefront - | The Product ratings feature is not supported in the sample Catalog, but yet the ratings feature displays in the Storefront on the Product Category, Product Details and Promoted Products pages. The ratings feature display needs to be removed from the Storefront.
| 32344 - | - | Storefront - | On the Edit/Add Address page, two error messages were displayed when State code is invalid.
| 32752 - | - | Storefront | The currency selected (CurrencyCode property) on the Storefront is not correctly transferred to Commerce Engine backend. | 33323 | - | Storefront - | The home page with carousel does not display correctly in certain scenarios, for example when selecting the "Show More" button on the Home Page to see more promoted products, then refreshing the page.
| 35271 - | - | Storefront - | Error with Internal links. Example: as part of adding a page to a site, in the Control Properties dialog box, insert a link. In the Insert Link dialog box select the Home node to expand the tree, but the result is that nothing displays in the tree.
| 35445 | - | Storefront - | The Mockup2 theme does not apply correctly. On the Home, Category or Product detail page the expected mock image does not display instead of the product image, as it should.
| 35527 - | - | Storefront - | The Storefront logo URL is incorrect in a VDIR created site, resulting in error "The requested document was not found".
| 35818 - | - | Storefront - | The scaffolding script and the new storefront template does not support multilingual items; scaffolding must support the languages supported by the remainder of the solution. | 35907 - | - | Storefront | On product landing pages, product information is not displayed. The product information section is blank.
| 36063 - | - | Storefront - | Drag and drop components are not working on Product Details Pages and Landing Pages. Instead an error occurs, a graphic continues spinning where the component was dropped, and the page does not function.
| 36206 - | - | Storefront | In the Control Panel it is not possible to enter a sub-category as a Start Navigation category. Instead, the field is cleared and is left blank. Even when saving and changing the view to raw values, the field is blank.
| 36329 - | - | Storefront | Search results are showing products that are not intended to be available on a storefront, for example searching within an audio products department returns fridges. 
| 36332 - | - | Storefront | On landing pages, on the presentation details some items may report broken links.
| 36408 - | - | Storefront | Storefront: Inventory status is not always displayed correctly in the Product List page and on Promoted Products. | 36696 | - | Storefront | In the Experience Editor, saving a page containing an added component that includes links results in an error reporting broken links.
| 36881 - | - | Deployment | InitializeEnvironment for HabitatShops fails when running through IIS, if it has not completed after ~2 minutes. It presents a 502.3 Bad Gateway error. | 33339 | - | Deployment | The Storefront is not loaded properly when the role of the site is set to CD | 35531 | - | Deployment | The global.json file is missing entries for completed RMAs and journal entries from ListsToMigrate | 36080 | - | Deployment | The content tree is not synchronized with Sitecore during deployment. It needs to be enabled by default. | - -36117 - - | - | Deployment | Deployment: the Sitecore Installation Framework (SIF) based deployment script does not correctly replace the default SQL instance name with the actual specified names during the deployment. This applies for the Identity Server and other servers/json files.
| 36299 - | - | Deployment - | Commerce administrator role does not have sufficient privileges. Should have the privileges of all the other roles.
| 23864, 25436 - | - -## Known issues - -Refer to the release notes in the Sitecore XC 9.0 Initial Release for known issues, and incomplete new features.  - -## Compatibility - -Refer to the Installation Guides (On Premises or Azure App Service) for software pre-requisites. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update1/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update1/index.md deleted file mode 100644 index e2fefdfa2..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update1/index.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: "Sitecore Experience Commerce 9.0 Update-1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update1.aspx ---- - -Update-1 to Sitecore Experience Commerce 9.0, compatible with Sitecore Experience Platform 9.0 Update-1. Update-1 provides corrective updates to the Initial Release. Refer to the [Sitecore Experience Commerce 9 Compatibility Table](https://kb.sitecore.net/articles/804595) or Installation Guides for the software and version prerequisites. - -Sitecore Commerce Connect is no longer packaged as a separate product. To access it, download the full Packages for On Premises and extract only the Sitecore Commerce Connect Core 11.1.78.zip file. Note that at this time, the product synchronization feature is not implemented as stated in 9.0 Initial Release Notes. - -Return to [all available versions](/downloads/Sitecore_Commerce) - - -## Download options - - | Resource | Description | - | --- | --- | - | [Packages for On Premises 2018.03-2.1.55](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update1/Secure/Sitecore.Commerce.2018.03-2.1.55.zip) | The Commerce packages and supporting software development kits (SDK) for on-premises or hosted virtual machine deployments. | - | [Packages for Azure App Service 2018.03-2.1.55](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update1/Secure/Sitecore.Commerce.Azure.2018.03-2.1.55.zip) | The Commerce web deploy packages (WDPs) for deployment to a Microsoft Azure App Service. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update1/Release_Notes) | Resolved issues, known issues, compatibility. | - | [Installation Guide - On Prem](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update1/Sitecore-XC-9.0_Installation_Guide(On-Prem).pdf) | Instructions for installing Sitecore XC in a single-server configuration on-prem or on a hosted virtual machine. | - | [Installation Guide - Azure App Service](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update1/Secure/Sitecore-XC-9.0_Installation_Guide(Cloud).pdf) | Instructions for installing Sitecore XC to a Microsoft Azure App Service. | - | [Upgrade Guide - XC 9.0 Initial Release to Update 1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update1/Secure/Sitecore-XC-9.0_Upgrade_Instructions(Initial-toU1).pdf) | Instructions for upgrading from Sitecore XC 9.0 Initial Release to 9.0 Update-1, for On Prem deployments. | - | [Documentation](https://doc.sitecore.com) | Link to Sitecore XC documentation on Sitecore's Documentation portal. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update2/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update2/Release_Notes.md deleted file mode 100644 index 259c9952b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update2/Release_Notes.md +++ /dev/null @@ -1,111 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update2/Release_Notes ---- - -**July 2018 – released Sitecore Experience Commerce 9.0 Update 2**. This is a product update. Sitecore recommends that you upgrade to this release if it includes new functionality or fixes that meet the needs of your organization. - -**September 2018 - released Sitecore Commerce Connect Core 11.2.95.zip**. This newer version of the Sitecore Commerce Connect Core package adds the Product Synchronization feature. Please see Connect - Product Sync (below). - -## New features/improvements - - | Area | Description | TFS no. | - | --- | --- | --- | - | ​​​Business Tools | ​​​An Entity ​Composer feature has been added that allows Business Tools users to add custom attributes to Catalog and other Engine entities. Entities are modified by applying new views. You can create and modify Views and save them as templates. | 29722 | - | ​​​Business Tools​​ | The plugin for versioning has been improved to provide versionable entities such as products, thereby allowing business users to have a history of data changes​. | 36149 | - | ​​​Business Tools​ | Sitecore's item publishing workflow has been extended to include the Commerce catalog system. The workflow of product updates is now managed from the Business Tools. | 33073 | - | ​​​Business Tools​ | Added two new security roles for Business Tools users: Merchandiser, Relationship Administrator. These roles are described in the Sitecore XC DevOps Guide, User Roles and Permissions section. | 34891 | - | Connect | Added Commerce reports for Experience Analytics. A new reporting package is added to the Commerce Release Package: Sitecore Commerce ExperienceAnalytics Core. | 206042 | - | Connect | Added Commerce reports for Experience Profile. A new reporting package is added to the Commerce Release Package: Sitecore Commerce ExperienceProfile Core. | 162256 | - | Connect | See hotfix instructions under Known issues > Connect > XC Marketing Automation (MA) campaign functionality.
Three new Commerce-specific rules for use in marketing automation campaigns have been introduced along with a default Abandoned Cart Campaign, to be used as a starting point for building campaigns for customers who have abandoned their cart to notify them and entice them to return and place an order. Two new Marketing Automation packages are added to the Commerce Release Package: Sitecore Commerce MarketingAutomation Core, and Sitecore Commerce Marketing Automation for AutomationEngine. For more information see the corresponding topic on doc.sitecore.net. | 198729 | - | Connect | Added alignment with the Sitecore Platform's General Data Protection Regulation (GDPR) tooling. Changes to Connect include the removal of personally identifiable information (PII) from collected interaction data, and the creation of new separate contact facets that can be tagged with a PII sensitive attribute. This allows the Platform GDPR tooling to remove PII data collected by Connect. Caution: this feature applies starting in Commerce 9.0 Update-2; it does not include the migration of any previous release data into compliance. | 209321 | - | Connect | Added support for individual security domains per site. Whenever users and customers are created, deleted and updated, it is done within the provided security domain and configured membership roles. With every API call in Connect, the security domain is now passed along as part of the property bag information. To obtain the security domain from the site context, a domain provider interface has been defined and is being resolved and called to resolve the security domain in use. For more information, see Chapter 1 of the Commerce Connect Developer's Guide on doc.sitecore.net. | 196558 | - | Connect - Product Sync | The original version **Sitecore Commerce Connect Core 11.2.83.zip** can be extracted from the Sitecore Experience Commerce 9.0 Update-2 Packages for On Premises release package.
A newer version **Sitecore Commerce Connect Core 11.2.95.zip** is also available on its own from the Download Options section. This newer version adds the Product Synchronization feature in the Connect service layer. It is intended specifically for deployments that integrate Sitecore Experience Platform with other commerce systems. There are no other functional or corrective additions in this new version. | 191319 | - | Storefront | Catalogs are now incorporated into the content area of the storefront sites and reside under a new "\{tenant\}/\{site\}/\{home\}/catalogs" item where it's used and belongs. This fixes multiple issues including:
1. Limited access to the catalog for non-admin Sitecore users.
2. The same products appearing in multiple locations in content with the same item ID and path, causing problems in different places.
3. Not being able to set and store Sitecore specific settings and data like personalization, presentation and workflow on catalog items and have it persisted correctly and uniquely. | 36076, 5755 | - | Storefront | You can now host multiple Storefront sites within the same domain. | 36111, 38231, 38803 | - | Storefront | Presentation information is now stored on Shared Layout instead of Final Layout. | 35664 | - | Storefront | SXA Storefront now includes similar upgrade logic as SXA, where upgrades are automatically detected and scripts are executed to upgrade content if needed. | 36282 | - | Storefront | SXA Storefront now implements the Commerce Connect Domain Provider interface to return the domain of the current currently selected storefront. | 37337 | - | Storefront | SXA Storefront now implements the Commerce Connect Currency Provider interface to return the currency in use of the currently selected storefront. For more information on the Currency Provider interface, see the Commerce Connect Developer Guide. | 32485 | - | Storefront | The Minicart component no longer requests the full shopping cart initially, but only the number of cart lines in the cart. Cart Controller and repository APIs have been extended to support the new method GetCartLinesCount. The actual cart lines content is retrieved when customer hovers over the mini-cart. | 37884 | - | Storefront | Tier-1 languages German, Japanese and Danish can now be select as optional modules during storefront scaffolding when the Storefront template has been selected. Language content can also be selected post storefront creation. | | - | Storefront | SXA Storefront upgraded to SXA 1.7.1. | 37733 | - | Storefront | SXA Storefront upgraded to use and support Knockout version 3.4.2. | 37884 | - | Performance | Storefront mobile responsiveness has been improved. Multiple fixes and improvements have been implemented to improve the experience on mobile devices using responsive design. | n/a | - | ​​Performance | ​System performance has been improved and the ability to scale out cost effectively. The improvements focus on optimizing calls to and within the Commerce Engine and its databases. Caching has also been optimized. | 37752, 37754, 37763, 37809, 38124 | - | ​​Deployment | ​We have added a command line tool to the dev.sitecore.net release download page that you can use to migrate Catalog and Inventory data from the legacy Commerce 8.2.x Commerce Server system. | 31735, 31736 | - -## Resolved issues - - | Area | Description | TFS no. | - | --- | --- | --- | - | Commerce​​​ | Require a code sample of how to retrieve\add related products for the certain product. A Postman code sample was added. | 37389 | - | Commerce​​​ | Spelling issue in the SIF.Sitecore.Commerce.1.1.4\Configuration\Commerce\Master_SingleServer.json | 37771 | - | Commerce​​​ | The "indexableStartingPoint Sitecore.ContentSearch.SitecoreIndexableItem is not an instance of ..." error message occurs in the Experience Editor if the "WebEdit.ShowNumberOfLockedItemsOnButton" setting is set to "true" | 38180 | - | Commerce​​​ | AddCartLine method of CartProcessor processor has incorrect order of parameters which are passed into GetContainer method | 38221 | - | Commerce​​​​​​ | Identity Server authentication fails after hashATypelgorithm is changed in Sitecore web.config | 38678 | - | Commerce​​​ | Commerce Engine should disable Windows Performance Counters on Azure Web App | 38868 | - | Commerce Engine Connect | There is no null checking for command.Models in the Sitecore.Commerce.Engine.Connect.Pipelines.Customers.CreateUser class | 36839 | - | Commerce Engine Connect | Creating CommerceUser is hardcoded in Sitecore.Commerce.Engine.Connect.Pipelines.Customers.CreateUser | 36844 | - | Commerce Engine Connect | Sitecore.Commerce.Engine.Connect.Pipelines.Customers.CreateUser processor overrides the passed in result(user) from the previous processors | 36845 | - | Commerce Engine Connect | CE Connect must make a distinction between UserName and Email. See also this TFS no. in the Breaking Changes section below. | 37539 | - | Commerce Engine Connect | Commerce Engine Connect log exceptions without stacktraces | 38737 | - | Commerce Engine Connect | Incorrect "Description" of the "PackageFullPath" parameter in the "CEConnect.json" file | 39014 | - | Engine | CustomerReported: async calls in SitecoreConnectionManager using .Result and blocking Threads | 38558 | - | Engine | VariantId value and parent product's ProductId shouldn't be equal | 38736 | - | Engine | GetCart postman sample misses Components collection | 39079 | - | Storefront | Analytics data is now collected through Commerce Connect when a category or PDP page is visited and when the Search is Initiated. Three new "invisible" components are now available that triggers the calls to Connect and they are inserted on the respective pages on the Storefront template. | 30147 | - | Storefront | Proceed to billing page getting fulfillment error when selected shipping option display text is not identical with shipping option item name. | 37130 | - | Storefront | For extensibility reasons, it's now possible to override virtual methods on CommerceStorefront class. | 38499 | - | Storefront | Numerous issues have been fixed in responsive design mode to support mobile devices and tablets in various screen sizes. | 33824, 33825, 33832 | - | Storefront | Using Creative Exchange to export the Branded or either Mockup themes that comes with the SXA Storefront now includes pages showing mock data. | 33055 | - | Storefront | Use of virtual directories as part of the URL to address the site is now fully supported. | 28445 | - | Storefront | Controller calls that do not involve interaction with xDB are now getting a read-only session copy to improve performance and avoid blocking of AJAX calls. Controller methods are tagged with attribute [StorefrontSessionState(System.Web.SessionState.SessionStateBehavior.ReadOnly)]. | 29918, 29919 | - | Storefront | Mismatch in naming between filename in the XC 9.0 Update-1 release package (Sitecore Commerce Experience Accelerator Habitat Catalog .zip) and the default deployment script within the release package (Sitecore Commerce Experience Accelerator Storefront Habitat Catalog .zip). In this release the word "Storefront" has been removed from the deployment script. | 37470 | - | Storefront | Product not purchasable error upon adding to cart product from a landing page. | | - | Performance | Improve the performance of the checkout process | 38218 | - | Performance | Rebuild master and web Index performance issue | 38853 | - -## Breaking changes - - | Area | Description | TFS no. | - | --- | --- | --- | - | ​Commerce Engine | The SitecoreServiceConfigurationExtensions class was moved from Plugin.Sample.AdventureWorks to Sitecore.Comerce.Engine. Any modifications to the Calculate Carts pipelines should be performed in this class. | | - | ​Commerce Engine Connect | An additional Customer property, "domain" was added in Commerce Engine Connect, as required to support the new Storefront multi-site feature. Previously, CE Connect assigned the email as the username. The CE Connect change in this release now distinguishes between UserName and Email. This allows each defined Storefront site to have a different profile system (i.e. different credentials for each site). | 37539 | - | Connect | The Abandoned Cart Marketing Automation Campaign sample required splitting the models into a new separate assembly. Therefore the Commerce Engine Connect and Storefront components needed to be updated to reference a new Connect Marketing Automation package. | 198729 | - | ​Connect | The GDPR alignment enhancement changed the structure of contact data. Contact data was moved out of the collected interaction data and into a separate new contact facet. Caution: this change applies starting with Commerce 9.0 Update-2 data; it does not include the migration of previous release data stored in xDB. Commerce data in xDB from previous releases will not comply with this feature as a result of this breaking change. | 209321 | - | ​Storefront | The default Catalog and Start Navigation Category are now configured from under "\{site\}/settings/commerce/catalog configuration". This is in order to avoid references from the Global Control Panel settings to specific sites after the catalog content has been moved under the specific sites where it belongs. The old location under Commerce Control Panel is still supported to provide backward compatibility. | 38808 | - -## Known issues - - | Area | Description | TFS no. | - | --- | --- | --- | - | Connect | Marketing Automation (MA) campaign functionality is disabled by default in the XC 9.0.2 deployment. To enable MA:1. Deploy the manual steps outlined in the following two MA KB articles:
https://kb.sitecore.net/articles/065636 (needed on Azure PaaS deployments only)
https://kb.sitecore.net/articles/1995062. Enable Live Events by setting the field IsLiveEvent to true.3. Add the xdb.processing.pools to ``You can copy the entry from the `To reproduce: Enable Sitecore.Commerce.Products.config under /App_Config/Include. Create a Product Repository. Run a full synchronization.
Result: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. | 40877 | - | Connect - Product Sync | For a product template the "Manufacturer" field has odd behavior with 3 large controls that overlap in the UI. Multiple "TreeList With Search" controls will overlap controls beneath it so you cannot see the field name. | 250292 | - | Connect - Product Sync | The Resources item (Product Resources template) for a product only provides ability to see the first of several images.
To reproduce: Use the filebasedECS sample to synchronize products. Select a product resources item and that has two images as child items. Select the main image.
Result: Can only see one image, cannot see both images as options. | 250293 | - | Connect - Product Sync | Field labels are not localized in the predefined templates. | 250388 | - | Connect - Product Sync | Subdivisions are not synchronized as part of the Product Synchronization feature. Sub-divisions nested to a division do not get created in the Sitecore tree structure. | 102140 | - | Connect - Product Sync | Product types do not support hierarchies as they should. When product types are synchronized there is no way to specify ProductTypes in a hierarchical manner. | 250926 | - | Commerce | On Azure, the SXA configuration for Azure indexing (\App_Config\Include\Z.Foundation.Overrides\Sitecore.XA.Foundation.Search.Azure.config) has been disabled to allow indexing to work properly in conjunction with Commerce. SXA Search components are not used in the SXA Storefront, but plain SXA sites without commerce will be affected if deployed in the same instance:
- The sxacontent computed field is missing – SXA search will not work at all as it’s using this field to find results.
- Geo-search will not work – no ordering by distance or searching within radius.
- Dynamic search results boosting (boosting rules in the search scope) – some rules will not work as they require computed fields which are defined in this config (on the other hand, there will be nothing to boost as you won’t have search results anyway).
- Field readers for tag and treelist will no longer be there – SXA tags will not work. | | - | Commerce | New Sitecore XP 9.0 Update-2 feature "Solr Cloud support" is not supported in Commerce deployments. | 38272 | - | Commerce | New Sitecore XP 9.0 Update-2 feature "Mongo-DB (v3.6.4) support" has not been tested in end-to-end Commerce deployments. | 37751 | - | Commerce | Unable to register accounts on newly created SXA Storefront sites. When a new Storefront is provisioned/created using SXA scaffolding, a corresponding new security domain is created in Sitecore. By default, the Commerce Engine is configured to only allow a few known domains:"Storefront" for the optional default Storefront site, "Extranet" and "CommerceUsers" for backward compatibility.
Solution: Edit the JSON configuration file for the environment in use and set the value of the Domain property for the policy Sitecore.Commerce.Plugin.Customers.CustomerPropertiesPolicy to include newly created domain names, which by default matches the names of the Storefronts. For more information, see the Sitecore XC DevOps guide. | 39088 | - | Commerce | The Product Catalog item and the content of the catalog configured does not appear in web database. | | - | ​Storefront | In Firefox, when you open a site exported using SXA Creative Exchange, the font icons are not displayed because Firefox prevents the font files from loading due to the File Same Origin policy. For more information about this policy, see the Firefox documentation: [https://developer.mozilla.org/en-US/docs/Archive/Misc_top_level/Same-origin_policy_for_file:_URIs](https://developer.mozilla.org/en-US/docs/Archive/Misc_top_level/Same-origin_policy_for_file:_URIs)
A work around is to disable the security.fileuri.strict_origin_policy browser configuration file. | 38204 | - | Storefront | Unable to register accounts on SXA Storefront sites on Azure and distributed environments in general. When a new Storefront is provisioned/created using SXA scaffolding, a corresponding new security domain is created on the CM instance. Security domains are stored in the domains.config file stored under "/App_Config/security".
Solution: The domains.config file, containing the definition of security domains, needs to be updated manually on cd and (CM) instances in distributed environments like Azure. Copy the file from the CM instance where the storefront(s) where created to the CD instance(s). On Azure, this can be done using the App Service Editor. Alternatively, the domains.config file can be edited on the CD server role, using the same Azure tool. For more information, see the Sitecore XC 9.0 Update-2 Installation Guide (Cloud). | n/a | - | Storefront | Breadcrumbs are not showing the right path for Category and Product Detail pages. The standard SXA breadcrumb component is configured on the header specific partial designs. By default, the breadcrumb does not work with the Commerce catalog and with the use of wildcard items for navigation and presenting the Catalog content. | | - | Storefront | Broken links appear in the Broken Links application after a deployment of the SXA Storefront | 39597 | - | Storefront | In tablet mode, e.g. mobile responsiveness, the Category bar does not display all categories of the Habitat catalog. The Habitat catalog has many first level categories with long names, which do not fit on the navigation bar when it is compressed.
Solution: for custom catalogs, design the category structure to have fewer first level categories and keep the names short, to avoid the problem on tablets. On smaller devices, the menu will turn into a clickable drop-down menu, for example a hamburger-style menu. | 39632 | - | Storefront | Errors are observed in SPE logs while installing SXA Storefront languages during deployment. | 39507 | - | Storefront | On the Product Detail Page for a product variant, discount text is shown when not expected. The same list price is duplicated with a strikethrough when there is no discount configured. | 38850 | - | Storefront | On Azure, the Japanese language is corrupted in the Content Editor when Japanese language has been chosen as the client language. | | - | Storefront | Storefront upgrade script shows blue screen after upgrading, and the user is not informed on what to do. | 39767 | - | Storefront | Product cards on Product List component are not aligned. This happens on the last row when the remaining items does not take up the full width of the row. | 39310 | - | Storefront | Unable to see Catagory page in Experience Editor mode when we click on any Category navigation item in an Azure environment. The workaround is to launch Experience Editor directly on the Category page item and it will show up with mock data. | 39768 | - | Storefront | It is not possible to create a Storefront using VDIR with a hostname which is the same as another Storefront, because it will be hidden. | 39793 | - | Deployment | XC 8.2 to 9.0.x data migration features introduced in this release exclude the migration of Commerce interaction data stored in xDB. | 162286 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update2/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update2/index.md deleted file mode 100644 index 6ed7d13d3..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update2/index.md +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: "Sitecore Experience Commerce 9.0 Update-2" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update2.aspx ---- - -Update-2 to Sitecore Experience Commerce 9.0, compatible with Sitecore Experience Platform 9.0 Update-2. Refer to the [Sitecore Experience Commerce 9 Compatibility Table](https://kb.sitecore.net/articles/804595) for the software and version prerequisites. - -Return to [all available versions](/downloads/Sitecore_Commerce) - -## Download options - - | Resource | Description | - | --- | --- | - | [Packages for On Premises 2018.07-2.2.126](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update2/Secure/Sitecore.Commerce.2018.07-2.2.126.zip) | The Commerce packages and supporting software development kits (SDK) for on-premises or hosted virtual machine deployments. | - | [Packages for Azure App Service 2018.07-2.2.126](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update2/Secure/Sitecore.Commerce.Azure.2018.07-2.2.126.zip) | The Commerce web deploy packages (WDPs) for deployment to a Microsoft Azure App Service. | - | [Sitecore Commerce Connect Core 11.2.95](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update2/Secure/Sitecore%20Commerce%20Connect%20Core%2011.2.95.zip) | Newer release of Sitecore Commerce Connect Core with added Product Synchronization feature, for on-premises or hosted virtual machine deployments. To be used for deployments that integrate Sitecore Experience Platform with other 3rd party commerce systems. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update2/Release_Notes) | New features/improvements, resolved issues, breaking changes, known issues. | - | [Installation Guide - Azure App Service](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update2/Secure/SitecoreXC-9.0_Installation_Guide(Cloud).pdf) | Instructions for installing Sitecore XC 9.0.2 to a Microsoft Azure App Service. | - | [Installation Guide - On Prem](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update2/Secure/SitecoreXC-9.0_Installation_Guide(On-Prem).pdf) | Instructions for installing Sitecore XC 9.0.2 in a single-server configuration on-prem or on a hosted virtual machine. | - | [Documentation](https://doc.sitecore.com) | Link to Sitecore XC documentation on Sitecore's Documentation portal. | - -## Upgrade and migration options - - | Resource | Description | - | --- | --- | - | [Upgrade Guide - 9.0 Update 1 to Update 2](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update2/Secure/Sitecore-XC-9.0_Upgrade_Instructions(U1-to-U2).pdf) | Instructions for upgrading from Sitecore XC 9.0 Update-1 to Update-2, for on-prem installations. | - | [Sitecore XC Data Migration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update2/Secure/Sitecore-XC-9.0_Data-Migration-Guide.pdf) | Instructions for migrating Catalog and Inventory data from the legacy Commerce 8.2.x Commerce Server system to XC 9.0 Update-2. | - | [Commerce Data Migration Tool 1.0.19](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update2/Secure/Sitecore.Commerce.Migration.1.0.19.zip) | Command line tool for migrating Catalog and Inventory data from the legacy Commerce 8.2.x Commerce Server system to XC 9.0 Update-2. | - -## Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update2/Secure/da-DK.xml) | Danish language translation file, for the Commerce Engine and Business Tools. Compatible with Sitecore Commerce Engine Connect 2.2.86. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update2/Secure/de-DE.xml) | German language translation file, for the Commerce Engine and Business Tools. Compatible with Sitecore Commerce Engine Connect 2.2.86. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update2/Secure/ja-JP.xml) | Japanese language translation file, for the Commerce Engine and Business Tools. Compatible with Sitecore Commerce Engine Connect 2.2.86. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update3/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update3/Release_Notes.md deleted file mode 100644 index 14e7b4a62..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update3/Release_Notes.md +++ /dev/null @@ -1,157 +0,0 @@ ---- -title: 'Release Notes' -description: '' -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update3/Release_Notes ---- - -**December 2018 – released Sitecore Experience Commerce 9.0 Update-3** - -Sitecore XC 9.0 Update-3 focuses on corrective content and improving performance with larger scale commerce catalogs. The release also adds a Static Bundles feature. - -## New features/improvements - -| Area | Description | TFS no. | -| --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------- | -| Static Bundles | Added support for Static Bundles. The Merchandiser can configure product bundles that comprise multiple Sellable Items (Products, Services, etc.), which are sold together and priced as a unit. The existing Sitecore XC pricing mechanisms – multicurrency list pricing, price cards, and promotions - can be applied to Static Bundles. Static Bundles can be created and managed using the BizFx - Merchandising tool. Import and export of Static Bundles is supported by the Sitecore XC Import/Export API. | 288864 | -| | -| Static Bundles - Storefront | In the Storefront, a Bundle means the use of sub-lines in a Shopping Cart. Bundle price is fixed and inventory depends on availability of constituent bundled items.

A new Product Bundle component has been implemented in the Storefront, which handles sellable items of type Bundle, e.g. a new Commerce Bundle template in Sitecore. The Product Bundle component is added to the Product Detail Page (PDP) that contains the existing components, including Product Variant. The Product Variant component is presented for normal sellable items, whereas the Product Bundle component is presented for bundles at run time. At design time, both components are presented in the Experience Editor so that each can be configured.

Storefront components have been updated to support Bundles as follows: Shopping Cart Lines, Order lines, Add-2-cart, JavaScript brokers/services.

When upgrading from a previous version, the Product Bundle component is NOT added automatically to the PDP. This has to be performed manually if so desired.

| 288865 | -| Storefront | Component specific JavaScript has been moved to themes. Previously files were loaded using AssetMedia pipeline and was configured. Now, all scripts have been moved into base themes including 3rd party core libs. Benefits are 1) multi-tenant support allowing individual base theme overrides per tenant and site, and 2) performance improvements by having SXA bundle and minify the theme content and scripts. | 268810 | -| Storefront | New custom themes will automatically get commerce content included. A new Storefront Branded Extension theme has been introduced and will copy it's content into new custom themes that use commerce components and foundation. The existing Storefront Branded Theme is now empty, but referencing the extension theme, so the end result is the same for sites pointing to it. | 268810 | -| Storefront | Added support for custom views for components, which was added in Sitecore Experience Accelerator (SXA) 1.8. | 276388 | -| Storefront | Added support for grayscale view mode, which was added in SXA 1.8. SXA 1.8 includes a new view mode functionality that allows individual users to work in design mode using different view modes. Out of the two new modes, grayscale view mode is supported. Wireframe is not. With view mode introduced, the two Storefront mockup themes have become obsolete and therefore moved to a sub-folder under themes and marked Deprecated. | 276388 | -| Commerce Connect | For those seeking Commerce Connect only e.g. for deployments that integrate Sitecore Experience Platform with other non-Sitecore commerce systems, download the full **Packages for On Premise 2018.12-2.4.63** package and extract the **Sitecore Commerce Connect Core 11.4.15.zip** file. If also interested in analytics and marketing automation features, optionally extract files:
Sitecore Commerce ExperienceAnalytics Core 11.4.15.zip
Sitecore Commerce ExperienceProfile Core 11.4.15.zip
Sitecore Commerce Marketing Automation Core 11.4.15.zip
Sitecore Commerce Marketing Automation for AutomationEngine 11.4.15.zip | N/A | -| Connect - Product Sync | The Commerce Connect Product Synchronization feature was added in Sitecore XC release 9.0 Update-2, but was added as a stand-alone addition after the release. Now for Sitecore XC 9.0 Update-3 this feature is included as part of the release, within the Sitecore Commerce Connect Core 11.4.xx.zip file. This feature is disabled by default. It can be enabled in deployments that integrate Sitecore Experience Platform with other commerce systems. There are no functional or corrective additions to this feature in Sitecore XC 9.0 Update-3. | 191319 | -| Browers - Storefront | Confirmed/added support for Apple Safari and Microsoft Internet Explorer, Microsoft Edge browsers in the Storefront. Previous XC releases had supported these browsers for the Business Tools but the Storefront did not, per the [Sitecore XC Compatibility Table](https://kb.sitecore.net/articles/804595). | 281240 | -| SolrCloud | Added Sitecore XC support for SolrCloud, bringing XC in line with Sitecore XP's support for SolrCloud. Sitecore provides the ability to configure connection to a SolrCloud deployment. Sitecore XP/XC does not provide the tools specifically for setting up the SolrCloud deployment itself; this is the responsibility of our customer/partner.
More setup information can be found in the [Setting up SolrCloud Walkthrough](https://doc.sitecore.com/developers/90/platform-administration-and-architecture/en/walkthrough--setting-up-solrcloud.html). The addition of SolrCloud support resulted the renaming and addition of packages (scwdp zip files) within the XC release package for Azure App Service. As of XC 9.0.3, you now select whether to deploy Azure or Solr web deploy packages. | 276393 | -| Business Tools | Added pagination to Catalog lists in the Business Tools. | 276370 | -| Engine | Added a runtime check to ensure the Engine's database is at the correct version level. The database adds a version number in a new custom table. | 277921 | -| Engine | Created a new Order Maintenance minion (PurgeCartsMinion) that deletes expired carts after a configurable amount of time. | 279083, 279348 | -| Performance | Reduced file-based Catalog import and export times by 80% for small to medium sized catalogs. Unblocked import and export of large Catalogs of up to 1,000,000 Sellable Items. Import times linear with increased catalog size. Reduced the memory consumed during processing. Similar improvements demonstrated in custom Catalog import examples using updated API guidance. | 277358 | -| Performance | Reduced cold load CM/CD times in a PaaS deployment by over 80%. | 291755 | -| Performance | Reduced indexing times by 50% on average by using cached metadata in Commerce Engine Connect rather than service calls to Commerce Engine Connect, optimizing Commerce Engine Connect data structures and Commerce Engine Database level improvements. The improvements greatly reduce the risk of indexing failures occurring for very large Catalogs, and reduce indexing times for Commerce items to be more aligned with indexing times observed when indexing Sitecore content items. | 277263 | -| Upgrade | Added the ability to upgrade from Sitecore XC 9.0 Update-2 to Update-3. Refer to the Upgrade Instructions on the Sitecore XC 9.0 Update-3 download page of dev.sitecore.net. | 277748 | - -## Resolved issues - -| Area | Description | TFS no. | -| -------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ------ | -| Business Tools | The default Composer Template fields appear in the Commerce Engine, but the values in the fields do not display. | 276449 | -| Business Tools | The user interface does not select the correct product version. The new version is highlighted correctly, but an old version gets actually selected. | 278385 | -| Business Tools | The Edit Inventory dialog does not display the fields' current values. Instead only the ID is shown and all other fields are empty. | 278407 | -| Pricing | Price updates are not displayed on Product Details page until ItemCache, DataCache, HtmlCache and CommerceCache are refreshed on the Sitecore side. | 276680 | -| Orders | Pending Orders lists are not displayed. Fixed in Commerce 9.0 Update-1 and ported forward to later releases. | 288563 | -| Promotions | IncludeInGrandTotal property of AwardedAdjustment class isn't taken into account in CalculateCartTotalsBlock. Fixed in Commerce 8.2.1 Update-3 and ported forward to this release. | 288867 | -| Customers | The most recent customers view hangs for minutes when there are thousands of customers. Fixed in a previous Commerce release ported forward to 9.0 Update-3 and later releases. | 287238 | -| Indexing | Indexing Commerce List fields returns a single string of IDs, instead of the expected list of values. | 279103 | -| Storefront | The Storefront does not work with a multiple hostnames/wildcards, for example when setting the HostName field to "sxa\* | site". This capability is provided in the Sitecore Experience Accelerator (SXA) but is not working in the Storefront built on SXA. | 276425 | -| Storefront | Search functionality does not correctly search all the descendants of a Category of a custom Catalog when this category is selected as "Start Navigation Category". | 276611 | -| Storefront | An AJAX request fails because the request URL gets altered to something invalid. This occurs when the Virtual Folder field has a value in it. | 276615 | -| Storefront | The request api/GetBulkStockInformation from the Storefront gets incorrectly sent with the default shopName, whereas it is supposed to he sent with the in context ShopName. | 277492 | -| Storefront | When inspecting the page source in a browser, the Storefront page contains multiple instances of the same markup. | 277528 | -| Storefront | Performance: UriFormatException is being thrown in the StorefrontUrlManager when navigating through a page that contains relative links. | 276529 | -| Storefront | An error message is displayed in the export results window when exporting a page with a Minicart through Creative Exchange… Error while downloading /sitecore/content/New%20tenant/New%20site/Home%7B158DFB56-F719-48C6-94AE-30C000CEC6E0%7D file. The issue is reproducible intermittently. | 292946 | -| Storefront | It is not possible to select the Product Variants component in the Experience Editor. | 276376 | -| Storefront | Catalog items are included in the export from Creative Exchange which makes it time out. | 276539 | -| Storefront | Mobile Responsiveness - Top Bar Links component - tapping action over hover effect consequences - components overlapped. | 282118 | -| Storefront | Top Bar links are difficult to select because they disappear easily. The sensitivity of these links needs to be adjusted. | 276621 | -| Storefront | The Minicart component are difficult to view and select because they disappear easily. The sensitivity of these links needs to be adjusted. | 290178 | -| Storefront | The Storefront logo is not displayed in all checkout pages. | 276816 | -| Storefront | Mock data for the Product Variant component is missing in the Experience Editor. | 276868 | -| Storefront | The hover area on the Language Selector & Minicart is incorrect on Firefox and Chrome, so that these items display even though they are not selected. | 276900 | -| Storefront | The product broker/service/event handler does not correctly discriminate by event type; all types are called. | 276946 | -| Storefront | Gift Card price and variant are not displayed correctly on the Product Details Page. | 276959 | -| Storefront | Selected product variant options do not display on lines and sub-lines for Shopping Cart Lines and Order Lines for any variant option type. | 277049 | -| Storefront | The Site does not get created during the site scaffolding step. The previous workaround was: Before creating a new site, copy the following item "/sitecore/templates/Branches/Foundation/Commerce Experience Accelerator/Commerce Foundation/Storefront Control Panel" to "/sitecore/templates/Branches/Feature/Commerce Experience Accelerator/Commerce Components/Storefront Control Panel". | 277474 | -| Storefront | Upgrade: The Category Navigation links are broken on the Storefront site after a Commerce 9.0.2 to 9.0.3 upgrade operation. | 292584 | -| Storefront | Upgrade: The Storefront Control Panel setting for the site does not get created during site creation (scaffolding), and duplicate Commerce data folders appear on new site after an upgrade. | 277467 | -| Storefront | Upgrade: Unable to sign out after signing in as an existing user after upgrading (SyntaxError: Illegal Return Statement). | 277483 | -| Performance | Performance issues experienced when importing large Catalogs with the Commerce Catalogs API. | 279260 | - -## Breaking changes - -Sitecore XC 9.0 Update-3 introduces configuration changes pertaining to the new Static Bundles feature, and due to performance improvements. Refer to the Sitecore XC Upgrade Guide for 9.0.3, which identifies the files containing configuration changes. - -| Area | Description | TFS no. | -| ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | -| ​Performance | Commerce Engine Database schema and stored procedures updated. A database table has been added to manage catalog hierarchy data including the new variant structures. Executing the .sql files specified in the upgrade documentation will create, update and populate the required database artifacts. | 277809 | -| Performance | A new Catalog item crawler AllCatalogItemsCrawler was added into Commerce Engine Connect. This new single crawler replaced the following deprecated crawlers: CatalogsCrawler, CategoriesCrawler, SellableItemsCrawler. | 277932 | -| Performance | Introduced changes to the global policy configuration. Added a new property Version to the EntityStoreSqlPolicy in the Global.json file. | 277921 | -| Performance | Introduced changes to the global policy configuration, for the runtime database version checking feature. Added a new property Version to the EntityStoreSqlPolicy in the Global.json file. | 277921 | - -## Known issues - -| Area | Description | TFS no. | -| ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | -| Business Tools | Exporting Catalogs do not contain Price Book, Promotion Book or Inventory Set associations. Upon re-importing a Catalog, the associations will need to be made using the Merchandizing tools. | 296591 | -| Connect | Marketing Automation (MA) campaign functionality is disabled by default in the XC 9.0.2 deployment. To enable MA:1. Deploy the manual steps outlined in the following two MA KB articles:
https://kb.sitecore.net/articles/065636 (needed on Azure PaaS deployments only)
https://kb.sitecore.net/articles/1995062. Enable Live Events by setting the field IsLiveEvent to true.3. Add the xdb.processing.pools to ``You can copy the entry from the `To reproduce: Enable Sitecore.Commerce.Products.config under /App_Config/Include. Create a Product Repository. Run a full synchronization.
Result: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. | 40877 | -| Connect - Product Sync | For a product template the "Manufacturer" field has odd behavior with 3 large controls that overlap in the UI. Multiple "TreeList With Search" controls will overlap controls beneath it so you cannot see the field name. | 250292 | -| Connect - Product Sync | The Resources item (Product Resources template) for a product only provides ability to see the first of several images.
To reproduce: Use the filebasedECS sample to synchronize products. Select a product resources item and that has two images as child items. Select the main image.
Result: Can only see one image, cannot see both images as options. | 250293 | -| Connect - Product Sync | Field labels are not localized in the predefined templates. | 250388 | -| Connect - Product Sync | Subdivisions are not synchronized as part of the Product Synchronization feature. Sub-divisions nested to a division do not get created in the Sitecore tree structure. | 102140 | -| Connect - Product Sync | Product types do not support hierarchies as they should. When product types are synchronized there is no way to specify ProductTypes in a hierarchical manner. | 250926 | -| Commerce Engine Connect | The wrong environment name is set for the Sitecore Commerce Engine Connect Crawler. An environment value "HabitatAuthoring" has been incorrectly set for "sitecore_web_index" crawler. This could result in wrong catalog information (for example, template view values) being indexed. Refer to [this Sitecore KB article](https://kb.sitecore.net/articles/937088) for the resolution. | 298894 | -| Commerce | On Azure, the SXA configuration for Azure indexing (\App_Config\Include\Z.Foundation.Overrides\Sitecore.XA.Foundation.Search.Azure.config) has been disabled to allow indexing to work properly in conjunction with Commerce. SXA Search components are not used in the SXA Storefront, but plain SXA sites without commerce will be affected if deployed in the same instance:
- The sxacontent computed field is missing – SXA search will not work at all as it’s using this field to find results.
- Geo-search will not work – no ordering by distance or searching within radius.
- Dynamic search results boosting (boosting rules in the search scope) – some rules will not work as they require computed fields which are defined in this config (on the other hand, there will be nothing to boost as you won’t have search results anyway).
- Field readers for tag and treelist will no longer be there – SXA tags will not work. | | -| Commerce | Unable to register accounts on newly created SXA Storefront sites. When a new Storefront is provisioned/created using SXA scaffolding, a corresponding new security domain is created in Sitecore. By default, the Commerce Engine is configured to only allow a few known domains:"Storefront" for the optional default Storefront site, "Extranet" and "CommerceUsers" for backward compatibility.
Solution: Edit the JSON configuration file for the environment in use and set the value of the Domain property for the policy Sitecore.Commerce.Plugin.Customers.CustomerPropertiesPolicy to include newly created domain names, which by default matches the names of the Storefronts. For more information, see the Sitecore XC DevOps guide. | 279595 | -| Storefront | Promoted and Related products do not display actual products in design mode, even when a specific product is selected. | 276471 | -| Storefront | In metadata, canonical links are incorrectly specified to always use the HTTP protocol instead of HTTPS which is the default protocol. Search engines might reject the canonical links. | 278594 | -| Storefront | On a storefront site, right click on the site and select Add Site Module. Sometimes an error message occurs, "Cannot bind argument to parameter 'Item' because it is null. | 279565 | -| Storefront | CreateDefaultTenantAndSite Task fails with 424 error message during Sitecore XC9 installation. | 276479 | -| Storefront | Creative Exchange shows error when exporting a Storefront site. Expand the Experience Editor ribbon and select Export. Result: error message, "Error while downloading /sitecore/content/Sitecore/Storefront/Home%7B8546B801-B278-443F-8EEA-5FA8FBDEEB73%7D file." | 286659 | -| Storefront | Illegal recursion detected: GetModel error message. Restart the CD role in an Azure PaaS deployment with a Storefront site provisioned. Refresh the Storefront site. Result: infrequent error message that goes away after a few tries, "Illegal recursion detected: GetModel. An unhandled exception was generated during the execution of the current web request. | 276657 | -| Storefront | An existing Product Catalog item is not set to point to new local "\{home\}/Catalogs/Habitat_Master/Department", as expected. | 276729 | -| ​Storefront | In Firefox, when you open a site exported using SXA Creative Exchange, the font icons are not displayed because Firefox prevents the font files from loading due to the File Same Origin policy. For more information about this policy, see the Firefox documentation: [https://developer.mozilla.org/en-US/docs/Archive/Misc_top_level/Same-origin_policy_for_file:\_URIs](https://developer.mozilla.org/en-US/docs/Archive/Misc_top_level/Same-origin_policy_for_file:_URIs)
A work around is to disable the security.fileuri.strict_origin_policy browser configuration file. | 282956 | -| Storefront | Errors are observed in Sitecore PowerShell Extensions (SPE) logs while installing SXA Storefront languages during deployment. | 276919 | -| Storefront | On the Product Detail Page for a product variant, discount text is shown when not expected. The same list price is duplicated with a strikethrough when there is no discount configured. | 278935 | -| Storefront | On Azure, the Japanese language is corrupted in the Content Editor when Japanese language has been chosen as the client language. | | -| Storefront | Storefront upgrade script shows blue screen after upgrading, and the user is not informed on what to do. | 282114 | -| Storefront | Product cards on Product List component are not aligned. This happens on the last row when the remaining items does not take up the full width of the row. | 276906 | -| Storefront | Unable to see Catagory page in Experience Editor mode when we click on any Category navigation item in an Azure environment. The workaround is to launch Experience Editor directly on the Category page item and it will show up with mock data | 281165 | -| Storefront | It is not possible to create a Storefront using VDIR with a hostname which is the same as another Storefront, because it will be hidden. | 278039 | -| Storefront | The Product Detailed Page does not display the "Visited Product Page" in the Buy Gift Card and Landing Pages. | 276885 | -| Storefront | Search: Searching on the home page returns different results when deployed in the Azure App Service, as compared to an on-premises deployment. On Azure the search results are insufficiently restricted so too many results are returned. Issue was discovered during side by side testing. More investigation is needed to resolve all occurrences. | 278752 | -| Storefront | Search: An invalid catalog Id error message is displayed when searching in a new site without a catalog configured. To reproduce: create and publish a new site, add IIS bindings, and load site in the browser. A no Catalog configured message is correctly displayed. Enter a search key e.g. 'audio' and press Search button. Expected: Search page returns no result. Actual: Error message: Server Error in '/' Application. Invalid catalog Id. | 281284 | -| Storefront | xAnalytics: The chart under Experience Analytics/Commerce/Regional Settings does not display the expected data. No data is reported. | 276661 | -| Storefront | In an Azure App Service deployment, executing the CreateDefaultStorefront script on the Sitecore Platform returns a Sitecore PowerShell Extensions (SPE) error. Possibly due to a timeout issue, and insufficient handling of long running tasks. | 278743 | -| Storefront | In an Azure App Service deployment, Japanese language translations are not displayed correctly in the Content Editor. Instead of the translated language, question marks "???" are displayed in the Content Editor. | 276911 | -| Storefront | In an Azure App Service deployment, Japanese language translations are not displayed correctly in a Storefront live site. Instead of the translated language, question marks "???" are displayed in the some fields in the Storefront user interface. | 281200 | -| Storefront | Internet Explorer 11: Some pages do not display all information correctly in IE11, for example on the Order Preview page the Product Title is not displayed correctly, and pricing information is not displayed correctly. | 294864 | -| Storefront | Internet Explorer 11: Search Page results are displayed inconsistently in IE11, for example on Chrome a search correctly returns 33 items whereas on IE11 an incorrect amount of 45 items are returned. | 294874 | -| Storefront | Internet Explorer 11: Portions of a displayed page content is not retrieved over an HTTPS secure connection, so that an error message displays on the browser prompting the user to select whether to show all content or not (over HTTP). | 270186 | -| Storefront | When creating a site with a virtual folder (vdir = ‘/virtual’), error messages are not displayed as expected. For example, creating a site without a virtual folder without a domain configured correctly results in expected error messages as follows…Invalid or missing value for property 'Domain', and User created but external Id was not provided. However, when repeating the same test in a virtual folder, the operation is reported successful even though it is not. | 288915 | -| Deployment | Occasional indexing timeout can occur during an on-premise deployment. If an indexing timeout occurs during deployment, re-index using the Sitecore Index Manager. | 294588 | -| Upgrade | The Engine SDK contains an obsolete Plugin.Sample.Upgrade that does not function. This plugin did not get removed in time for the release. Please do not use it. | | - -## Documentation updates - -We completely overhauled our Sitecore documentation delivery, from back end authoring system through to our new [doc.sitecore.com](https://doc.sitecore.com/) website (was doc.sitecore.net). For Sitecore XC this includes separating the Developer from User experience. Most documentation that was previously in separate html documents is now embedded into our consolidated website. Information is easier to find, by role and by commerce function, and with improved search. -We continue to publish install, upgrade, and migration .pdf documents on our [downloads site](/downloads/Sitecore_Commerce). - -| Area | Description | TFS no. | -| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------- | -| Install Guide | Added instructions on how to install Sitecore XC without Storefront. This applies to the on-premise guide only. | 277350 | -| Upgrade Guide | Added migration steps related to breaking changes and configuration changes introduced by performance improvements | 277217 | -| Upgrade Guide | Added migration steps related to configuration changes introduced by the Static Bundles feature. | 277283 | -| Business Users | Added Business Tools documentation for the new Static Bundles feature. [Link to documentation](https://doc.sitecore.com/users/90/sitecore-experience-commerce/en/inventory-and-static-bundles.html). | 277294 | -| Business Users | Added Storefront documentation for the new Static Bundles feature. [Link to documentation](https://doc.sitecore.com/users/90/sitecore-experience-commerce/en/commerce-catalog-renderings.html#UUID-48c4e758-7df5-3f0f-bcae-338b05b698ab_section-idm44857728324864). | 277294 | -| Business Users | Added Storefront renderings for Shopping Carts in support of the new Static Bundles feature. [Link to documentation](https://doc.sitecore.com/users/90/sitecore-experience-commerce/en/commerce-cart-renderings.html). | 30122 | -| Business Users | Added Storefront renderings for Orders in support of the new Static Bundles feature. [Link to documentation](https://doc.sitecore.com/users/90/sitecore-experience-commerce/en/commerce-orders-renderings.html). | 30122 | -| Business Users | Clarified information on order states, for example problem orders, and available actions. [Link to documentation](https://doc.sitecore.com/users/90/sitecore-experience-commerce/en/orders.html). | 277258 | -| Business Users | Added user documentation for new Composer Template functionality. [Link to documentation](https://doc.sitecore.com/users/90/sitecore-experience-commerce/en/composer-and-custom-child-views.html). | 279184 | -| Business Users | New topic "Setting the Rendering View Provider" outlines how to override the path to the /Views folder using the Rendering View Provider. [Link to documentation](https://doc.sitecore.com/users/90/sitecore-experience-commerce/en/setting-up-the-rendering-view-provider.html). | 286216 | -| Business Users | New topic explains how to use the Commerce base themes. [Link to documentation](https://doc.sitecore.com/users/90/sitecore-experience-commerce/en/using-the-new-commerce-base-themes.html). | 268810 | -| Business Users | Added new videos related to the topic "Create a new tenant and site with commerce features". [Link to documentation](https://doc.sitecore.com/users/90/sitecore-experience-commerce/en/create-a-new-tenant-and-site-with-commerce-features.html). | N/A | -| Business Users | Added a note to the topic "Create a new tenant and site with commerce features" about bootstrap 3 not being supported by the Storefront template. [Link to documentation](https://doc.sitecore.com/users/90/sitecore-experience-commerce/en/create-a-new-tenant-and-site-with-commerce-features.html). | 287825 | -| DevOps | Added information on cloning a Catalog. [Link to documentation](https://doc.sitecore.com/developers/90/sitecore-experience-commerce/en/clone-catalog-data.html). | 279179 | -| DevOps | Added a paragraph describing what the Clean Environment request does. [Link to documentation](https://doc.sitecore.com/developers/90/sitecore-experience-commerce/en/clean-and-initialize-the-environment.html). | 279186 | -| DevOps | Documented Catalog export via script (CURL). [Link to documentation](https://doc.sitecore.com/developers/90/sitecore-experience-commerce/en/walkthrough--exporting-catalog-and-inventory-data.html). | 286791 | -| DevOps | Documented IIS configuration for importing Catalogs. [Link to documentation](https://doc.sitecore.com/developers/90/sitecore-experience-commerce/en/walkthrough--importing-catalog-data.html). | 288803 | -| DevOps | Documented SolrCloud configuration. [Link to documentation](https://doc.sitecore.com/developers/90/sitecore-experience-commerce/en/walkthrough--setting-up-solrcloud-on-sitecore-xc.html) | 287189 | -| DevOps | Added documentation pertaining to synchronization content request path, e.g. that it does not need a manually entered version field value. [Link to documentation](https://doc.sitecore.com/developers/90/sitecore-experience-commerce/en/synchronize-content-items.html). | 277060 | -| DevOps | Documented how to pass PolicyKeys in a code-first approach, for importing Catalogs. [Link to documentation](https://doc.sitecore.com/developers/90/sitecore-experience-commerce/en/walkthrough--importing-catalog-data.html). | 288861 | -| DevOps | Documented how to optimize the CommerceContext cache for a long running process. [Link to documentation](https://doc.sitecore.com/developers/90/sitecore-experience-commerce/en/optimize-the-commercecontext-cache-for-a-long-running-process.html). | 288862 | -| DevOps | Added more description of how to use sample Postman API calls. [Link to documentation](https://doc.sitecore.com/developers/90/sitecore-experience-commerce/en/execute-sample-api-calls-in-postman.html). | N/A | -| Developer | Documented how to rebuild Sitecore indexes.[Link to documentation](https://doc.sitecore.com/developers/90/sitecore-experience-commerce/en/manually-rebuild-sitecore-xp-indexes.html). | 268929 | -| Connect Developer | New parameter IncludeBundledItemsInventory for GetStockInformationRequest added to the Connect Developer's Guide. [Link to documentation](https://doc.sitecore.com/developers/90/sitecore-experience-commerce/en/inventory-service-methods.html). | 251160 | diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update3/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update3/index.md deleted file mode 100644 index 41cc31c5e..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update3/index.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: "Sitecore Experience Commerce 9.0 Update-3" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update3.aspx ---- - -Update-3 to Sitecore Experience Commerce 9.0, compatible with Sitecore Experience Platform 9.0 Update-2. Refer to the [Sitecore Experience Commerce 9 Compatibility Table](https://kb.sitecore.net/articles/804595) for the software and version prerequisites. - -Return to [all available versions](/downloads/Sitecore_Commerce) - -## Download options - - | Resource | Description | - | --- | --- | - | [Packages for On Premise 2018.12-2.4.63](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update3/Secure/Sitecore.Commerce.2018.12-2.4.63.zip) | The Commerce packages and supporting software development kits (SDK) for on-premise or hosted virtual machine deployments. | - | [Packages for Azure App Service 2018.12-2.4.63](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update3/Secure/Sitecore.Commerce.Azure.2018.12-2.4.63.zip) | The Commerce web deploy packages (WDPs) for deployment to a Microsoft Azure App Service. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update3/Release_Notes) | New features/improvements, resolved issues, breaking changes, known issues. Documentation updates are also listed. | - | [Installation Guide - Azure App Service](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update3/Secure/Sitecore_Experience_Commerce_Installation_Guide_for_Azure_9.0.3.pdf) | Instructions for installing Sitecore XC 9.0.3 to a Microsoft Azure App Service. | - | [Installation Guide - On-Prem](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update3/Secure/Sitecore_Experience_Commerce_Installation_Guide_for_On-Premise_9.0.3.pdf) | Instructions for installing Sitecore XC 9.0.3 in a single-server configuration on-prem or on a hosted virtual machine. | - | [Documentation](https://doc.sitecore.com) | Link to the Sitecore Documentation website. | - -## Upgrade and migration options - - | Resource | Description | - | --- | --- | - | [Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update3/Secure/Sitecore_Experience_Commerce_Upgrade_Guide_for_9.0.3.pdf) | Instructions for upgrading from Sitecore XC 9.0 Update-2 to Update-3, for on-prem deployments. | - | [Data Migration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update3/Secure/Sitecore_Experience_Commerce_Data_Migration_Guide_for_9.0.3.pdf) | Instructions for migrating data from Sitecore Commerce 8.2 to Sitecore Experience Commerce 9.0.3. | - | [Commerce Data Migration Tool 1.2.2](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update3/Secure/Sitecore.Commerce.Migration.1.2.2.zip) | Command line tool for migrating Catalog and Inventory data from the legacy Commerce 8.2.x Commerce Server system to XC 9.0 Update-3. | - -## Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update3/Secure/da-DK.xml) | Danish language translation file, for the Commerce Engine and Business Tools. Compatible with Sitecore Commerce Engine Connect 2.4.63. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update3/Secure/de-DE.xml) | German language translation file, for the Commerce Engine and Business Tools. Compatible with Sitecore Commerce Engine Connect 2.4.63. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/90/Sitecore%20Experience%20Commerce%2090%20Update3/Secure/ja-JP.xml) | Japanese language translation file, for the Commerce Engine and Business Tools. Compatible with Sitecore Commerce Engine Connect 2.4.63. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/91/Sitecore_Experience_Commerce_91_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/91/Sitecore_Experience_Commerce_91_Initial_Release/Release_Notes.md deleted file mode 100644 index 12ef5d2a5..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/91/Sitecore_Experience_Commerce_91_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,98 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/91/Sitecore_Experience_Commerce_91_Initial_Release/Release_Notes ---- - -**May 2019 – updated Installation Guide - On Premise with clarifications & new Troubleshooting section** - -****April 2019 – released Sitecore Experience Commerce 9.1 Initial Release** - -** - -Commerce 9.1 focuses on compatibility with Sitecore Experience Platform 9.1 Update-1, along with some enhancements and corrective content. - -## New features/improvements - - | Area | Description | TFS no. | - | --- | --- | --- | - | Connect | Extended the capabilities of the Abandoned Cart marketing automation (MA) campaign, including:
- New conditions and actions:
    > Check on email.
    > Check on cart content.
    > Send email: Transfers custom values from the MA campaign to the email campaign. EXM passes on the parameters to any rendering used to generate the email output. Provider based logic is used for transfering values to email campaigns.
- Automatic enrollment on cart actions.
- Templated campaign. Can be instatiated via a new API call.
[Link to documentation](https://doc.sitecore.com/developers/90/sitecore-experience-commerce/en/set-up-the-storefront-abandoned-cart-marketing-automation-campaign.html). | 251087 | - | Connect and Storefront | Added support for CMS-only mode, meaning the Commerce stack can function without depending on the Platform's xDB functionality running, including the xConnect Tracker. This allows the Tracker to be disabled or enabled while in production, via a configuration change and web server restart. This new capability adds a new CommerceTracker abstraction that uses the existing xConnect Tracker only when its available. When not available it falls back to using a single tracking cookie to identify the contact/customer. This fall back occurs when:
- The xConnect Tracker has been disabled (CMS-only mode).
- Under stress/load wgeb xDB becomes unavailable. | 272332 | - | Storefront | Added Direct Navigation functionality, including:
- Ability to target individual catalog and product items directly by URL.
- Ability to configure unique presentation on individual categories and products.
- Ability to configure page events, goals, analytics profiles, personalization and multi-variant testing on category and product items, and have the artifacts in effect as you would expect.
- Support for standard SXA components like Search Results, Breadcrumb and Navigation.
- Unique catalog templates for each tenant and use of SXA Template-to-Page Design Mapping for multi-site support.
For more information refer to topics on direct navigation:  [Enable direct navigation](https://doc.sitecore.com/users/91/sitecore-experience-commerce/en/enable-direct-navigation.html).   [Configure direct navigation on existing sites](https://doc.sitecore.com/developers/91/sitecore-experience-commerce/en/configure-direct-navigation-on-existing-sites.html). | 280964, 271081, 288054 | - | Storefront | Added Unified Search functionality based on use of SXA indexes. Note that SXA search components target the "sxacontent" custom index field, whereas Commerce search components target the standard "_content" hidden index field. | 303725 | - | Storefront | A new version of the Product Bundle component has been created, which is based on a rendering variant. The previous Product Bundle component is still available but now the title has the postfix "(deprecated)". New component version is included with new sites. Existing sites being upgraded will still see the previous version. If the new version is desired, it should be included manually by adding it to available renderings for the site. | 277554 | - | Storefront | It is now optional and configurable to include or exclude categories from search results. By default, categories are no longer included in search results contrary to previous releases. However, when upgrading to 9.1, the storefronts will be configured to include categories in order not to break backward compatibility. | 290513 | - | Business Tools | Added the ability to create a Composer Template directly in the Composer Dashboard. Previously, to create a template the user needed to add a new view from the sellable item (or another entity) then select "make it a template". | 277240 | - | Sitecore Identity | The previous Commerce Identity Server code has been incorporated into the Sitecore Platform's new Sitecore Identity service. Commerce 9.1 has been updated to use the new Sitecore Identity service.
The bearer token authentication documentation has been updated with the new Sitecore Identity configuration.  [Link to documentation](https://doc.sitecore.com/developers/91/sitecore-experience-commerce/en/bearer-token-authentication.html). | 276957 | - | Performance | Improved the processing of the delete operation using the ImportCatalogs web service method, for example with the mode parameter set to "replace", testing revealed the time to delete all catalogs can be reduced to around 15% of the original time. | 299881 | - | Deployment | Added the ability to set up Commerce roles on different subdomains. This resolves a previous distributed deployment limitation where Commerce roles needed to be on the same domain, distinguishable only by configuring non-standard SSL port(s). An example outcome of this improvement is in configuring for Cross-Site Request Forgery (CSRF) protection in a distributed Commerce deployment, for example:
- Prior to Commerce 9.1: Commerce Authoring on sc9.com:5000, BusTools on sc9.com:4200
- New in Commerce 9.1: Commerce Authoring on commerceauthoring.sc9.com, BusTools on bizfx.sc9.com
[Link to documentation](https://doc.sitecore.com/developers/91/sitecore-experience-commerce/en/commerce-hostnames.html) | 276570 | - | Deployment | Added the Commerce sites postfix parameter to Deploy-Sitecore-Commerce.ps1 and installation script. Documented hostnames.
[Link to documentation](https://doc.sitecore.com/developers/91/sitecore-experience-commerce/en/commerce-hostnames.html) (same link as the entry above) | 277015 | - | Deployment | Improved the flexibility of installing Business Tools by replacing fixed names and settings (e.g. BizFx server name, install path, port) with parameters. | 277023 | - -## Resolved issues - - | Area | Description | TFS no. | - | --- | --- | --- | - | Storefront | Opening a Storefront site in Experience Editor using HTTPS protocol, then exporting results in an error. | 277478 | - | Storefront | Adding "/" at the end of a Storefront query (e.g. a Catalog category) returns an empty result, instead of returning all the results. An error occurs in the CatalogPageItemResolver. | 281055 | - | Storefront | CatalogLinkProvider does not correctly use the default link manager configuration. | 292985, 320520 | - | Storefront | Unable to link to a catalog item using the standard Sitecore link dialog. | 292985, 320520, 320516 | - | Storefront | Unable to add to cart to a static bundle where the product has no variant. | 303048 | - | Storefront | Product Categories are incorrectly returned when searching for products from the Search bar. You can now configure the solution to leave out categories. | 290513 | - | Storefront | Sitecore.Commerce.Contacts.ContactFactory.GetUserId returns the Commerce user's ContactId, whereas it should return the UserName. | 309673 | - | Storefront | Commerce Storefront returns search results based on a partially matched ID, whereas it should only return results based on a string, e.g. name or description. | 309597 | - | Business Tools | It is not possible to use a custom hostname for the Business Tools if the "AntiForgeryEnabled" setting is set to true in the Commerce Authoring instance. | 316154 | - | Business Tools | Adding a Composer Template to product definitions removes the products from content indexes. | 276324 | - | Business Tools | When a View and a Composer Template have the same name, circular template inheritance errors occur, as shown in the log. The Business Tools and Sitecore Content Editor user interfaces appear to operate normally, but the custom template cannot be found from either UI. | 276414 | - | Business Tools | An empty Composer property in a Composer View causes errors when the SellableItem is loaded via the CommerceDataProvider. | 278075 | - | Business Tools | The wrong product composer template gets selected on Content Delivery server after creating a custom view using the Composer. | 306234 | - | Business Tools | Creating a Composer Template and associating to the product that the template came from prevents data from being properly accessed for that new version. For example, creating version 2 should return all content that exists for version 1 plus the template, but there is an issue retrieving all the content for the item. | 306816 | - | Business Tools | Multiple versions of published catalog content appear in commerce computed index fields. For example, when creating a second version of a catalog category and publishing it in the Business Tools, the category appears in duplicate in the menu in the Storefront. | 307514 | - | Content Editor | Rebuilding the indexes in the Content Editor Control Panel causes catalog items that were not selected to be indexed. | 279642 | - | Content Editor | The CatalogDataProvider causes duplicate __Standard Values versions. | 311105 | - | Engine | A shopper who has never made an order cannot get access to a promotion, when the CurrentCustomerOrdersCountCondition is used. An error in the logic check of this condition causes the benefit to not be applied when the order count is 0. | 276938 | - | Engine | System.InvalidOperationException: "Collection was modified; enumeration operation may not execute." is thrown when Sitecore.Commerce.Core.GetEnvironmentCacheBlock is executed in parallel threads. | 278081 | - | Engine | CommerceCache leaks memory because its entry size is not calculated correctly. Documentation has been updated.  [Link to documentation](https://doc.sitecore.com/developers/91/sitecore-experience-commerce/en/commerce-memory-cache-settings.html). | 309139 | - | Engine | Unable to configure the CreateTraceReport method of the Sitecore.Framework.Pipelines.PipelineTraceContextExtensions to execute and print a trace report. | 278695 | - | Engine | A NullReferenceException is thrown in Sitecore.Commerce.Plugin.Catalog.FormatComposerViewPropertyBlock because the code misses a NullCheck for the request object. | 299687 | - | Engine | A Minion runs another time without first confirming that the previous run has completed. | 279710, 277002 | - | Engine | The wrong ID is being populated on Catalog relationships. The Sitecore ID is used and not the deterministic ID, which causes the Data Provider to not return variants of the related items. | 310496 | - | Engine | Cannot add a Static Bundle to a Cart when it contains products with no variants. The Product Details page throws an error. | 303046, 303048 | - | Indexing | Unpublished catalog content appears in the Web index and in Storefront search results. Indexing lists are not correctly handling "draft" or "awaiting approval" items. | 299109, 300078 | - | Performance | The GetSitecoreIdFromMappings method in CE Connect is slow with large catalogs when searching keys by values. | 312872 | - -## Breaking changes - - | Area | Description | TFS no. | - | --- | --- | --- | - | Sitecore Identity | The previous Commerce Identity Server code has been incorporated into the Sitecore Platform's new Sitecore Identity service. Commerce 9.1 has been updated to use the new Sitecore Identity service.
The bearer token authentication documentation has been updated with the new Sitecore Identity configuration.  [Link to documentation](https://doc.sitecore.com/developers/91/sitecore-experience-commerce/en/bearer-token-authentication.html). | 276957 | - | Configuration and Schema | For information on the configuration and schema changes between Sitcore XC 9.0.3 and 9.1, refer to the instructions in the Commerce 9.1 Upgrade Guide.  [Link to Commerce 9.1 Upgrade Guide](http://commercesdn.sitecore.net/SitecoreXC_9.1/Sitecore_Experience_Commerce_Upgrade_Guide_for_9.1.pdf). | 301563, 303983 | - -## Known issues - - | Area | Description | TFS no. | - | --- | --- | --- | - | Storefront | Categories and products in a catalog in certain scenarios can appear with an orphaned fullpath in Solr results, which results in broken navigation in the Storefront. If this occurs, then rebuilding the index solves the issue. | 309214 | - | Storefront | The JSS Layout Service does not work with the Storefront. | 301199 | - | Storefront | Assets are missing from Creative Exchange exports when deployed on Azure. This is due to SXA Bug 301730: SXA Creative Exchange export html with optimized-min css/js.
Two work arounds are available:
Option 1: Navigate to two items below and set Mode from "Concatenate And Minify" to "Disabled".
/sitecore/system/Settings/Foundation/Experience Accelerator/Theming/Optimiser/Scripts
/sitecore/system/Settings/Foundation/Experience Accelerator/Theming/Optimiser/Styles
Option 2: Navigate to file \App_Config\Modules\SXA\Foundation\Sitecore.XA.Foundation.Theming.config and set "XA.Foundation.Theming.AssetsOptimizationSwitch.Enabled" from False to True. | 309933 | - | Storefront | "Could not compute value for ComputedIndexField: urllink" message appears in the index log file.There is a pre-defined computed field "urllink" provided out of the box which is used in SearchResultItem. Sitecore populates its value while indexing where the context site is unknown, which results in the exception.
Workaround: Remove or comment out the index field, as it will be deprecated and removed from the Platform. | 318838 | - | Storefront | After a deployment on Azure, navigating to Storefront category/product pages throws exception, "Object reference not set to an instance of an object".
Workaround: Smart Publish all languages and rebuild core, master and web indexes. Alternatively recycle the CD server role. | 322631 | - | Connect | Orders do not display correctly in the Experience Analytics and Experience Profile reports applications, for example the Experience Profile report under the Commerce > Orders tabs. To work around the issue, re-instate the processor TriggerOrderOutcome that is commented out in the “/App_Config/Include/Sitecore.Commerce.Orders.config” file, under the pipeline “commerce.orders.submitVisitorOrder”.
The root cause is the processor that triggers the Product Purchase outcome in Connect is disabled, which causes the outcome not to be triggered and reports depending on the outcome not to show any data. | 234685 | - | Release Package | The Commerce Engine download package (e.g. Sitecore.Commerce.Engine.3.0.163.zip) delivers a set of Sitecore framework files (e.g. Sitecore.Framework.*.dll) that are not the most recent. These file instances are used only by the Commerce Engine. There are no known issues with them. Resolution: the latest supported versions of these files are available with the dependent Sitecore XP 9.1.1 release, within the Sitecore directory. And, when building the Commerce Engine SDK the correct latest versions are automatically retrieved from the MyGet feed. | N/A | - -## Documentation updates - - | Area | Description | TFS no. | - | --- | --- | --- | - | Storefront | The Storefront documentation has been re-structured and enhanced. There are now developer-specific topics, for example Tasks for Developers.
[Link to Tasks for Developers documentation](https://doc.sitecore.com/developers/91/sitecore-experience-commerce/en/tasks-for-developers.html).
In addition, many of the sections that follow this topic are new, for example: Best practices, Content tree architecture, Configure currencies, Configure site searches, Using the ModelReference field renderer, Product Bundle structure, Troubleshooting. | N/A | - | Storefront | Documented the use of Javascript in base themes, the dependencies between them, and the order in which they need to be referenced.
[Link to documentation](https://doc.sitecore.com/developers/91/sitecore-experience-commerce/en/using-the-commerce-base-themes.html). | 309067 | - | Storefront | Added guidance on how to configure new custom indexes in SXA, when the Storefront is in use, and how to implement and configure new Commerce Engine strategies for incremental index updates.  [Link to documentation](https://doc.sitecore.com/developers/91/sitecore-experience-commerce/en/configure-site-searches-in-sxa-storefront.html). | 310379 | - | Storefront | There are also new topics in Storefront user documentation. User documentation comprises more business user-centric tasks, for example tasks for Content Authors, and tasks for Designers.
[Link to Tasks for Content Authors documentation](https://doc.sitecore.com/users/91/sitecore-experience-commerce/en/tasks-for-content-authors.html).   [Link to Tasks for Designers documentation](https://doc.sitecore.com/users/91/sitecore-experience-commerce/en/tasks-for-designers.html).
In addition, many of the sections that follow these topics are new, for example: The Toolbox, Workflow to set up a new storefront, Set up the storefront for abandoned cart marketing automation campaign, Walkthroughs, FAQs. | N/A | - | Connect | Created a topic for configuring shipping options via the Commerce Control Panel.  [Link to documentation](https://doc.sitecore.com/developers/90/sitecore-experience-commerce/en/commerce-engine-and-storefront-configuration-settings.html). | 277322 | - | Orders | Added a table describing the status of an Order throughout its lifecycle.  [Link to documentation](https://doc.sitecore.com/developers/91/sitecore-experience-commerce/en/commerce-orders-status.html).
Note that this was also added to the previous Commerce 9.0 release documentation. | 300292 | - | Orders | Added process flows for Create Order process and Post-order Capture process.  [Link to documentation](https://doc.sitecore.com/developers/91/sitecore-experience-commerce/en/orders-overview.html).
Note that this was also added to the previous Commerce 9.0 release documentation. | 313815 | - | Orders | Added information regarding the purpose of the Language field of Orders tool.  [Link to documentation](https://doc.sitecore.com/users/91/sitecore-experience-commerce/en/work-with-orders.html).
Note that this was also added to the previous Commerce 9.0 release documentation. | 312893 | - | Developer | Added documentation on customizing fulfillment options.  [Link to documentation](https://doc.sitecore.com/developers/91/sitecore-experience-commerce/en/create-a-custom-fulfillment-option.html).
Note that this was also added to the previous Commerce 9.0 release documentation. | 292944 | - | Developer | Added description of the PurgeCartsMinion, the order maintenance minion that deletes expired carts after a configurable amount of time.
[Link to documentation](https://doc.sitecore.com/developers/91/sitecore-experience-commerce/en/predefined-commerce-engine-minions.html). | 279083 | - | Developer | Added description and use of Commerce Engine Policies.  [Link to documentation](https://doc.sitecore.com/developers/91/sitecore-experience-commerce/en/core-policies.html).
Note that this was also added to the previous Commerce 9.0 release documentation. | 276685 | - | Integration | Added procedure to create commerce term. Added as part of Walkthrough: Configuring fulfillment options.  [Link to documentation](https://doc.sitecore.com/developers/91/sitecore-experience-commerce/en/walkthrough--configuring-fulfillment-options.html_).
Note that this was also added to the previous Commerce 9.0 release documentation. | 312619 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/91/Sitecore_Experience_Commerce_91_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/91/Sitecore_Experience_Commerce_91_Initial_Release/index.md deleted file mode 100644 index b734151f8..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/91/Sitecore_Experience_Commerce_91_Initial_Release/index.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: "Sitecore Experience Commerce 9.1 Initial Release" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/91/Sitecore_Experience_Commerce_91_Initial_Release.aspx ---- - -Initial launch of Sitecore Commerce 9.1, focusing on compatibility with Sitecore Experience Platform 9.1 Update-1, along with enhancements and corrective content. Refer to the [Sitecore Experience Commerce 9 Compatibility Table](https://kb.sitecore.net/articles/804595) for the software and version prerequisites. - -Return to [all available versions](/downloads/Sitecore_Commerce) - -## Download options - - | Resource | Description | - | --- | --- | - | [Packages for On Premise 2019.04-3.0.163](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/91/Sitecore%20Experience%20Commerce%2091%20Initial%20Release/Secure/Sitecore.Commerce.2019.04-3.0.163.zip) | The Commerce packages and supporting software development kits (SDK) for on-premise or hosted virtual machine deployments. | - | [Packages for Azure App Service 2019.04-3.0.163](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/91/Sitecore%20Experience%20Commerce%2091%20Initial%20Release/Secure/Sitecore.Commerce.Azure.2019.04-3.0.163.zip) | The Commerce web deploy packages (WDPs) for deployment to a Microsoft Azure App Service. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Commerce/91/Sitecore_Experience_Commerce_91_Initial_Release/Release_Notes) | New features/improvements, resolved issues, breaking changes, known issues. Documentation updates are also listed. | - | [Installation Guide - On Premise](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/91/Sitecore%20Experience%20Commerce%2091%20Initial%20Release/Secure/Sitecore_XC-9.1_Installation_Guide_for_On-Prem.pdf) | Instructions for installing Commerce in a single-server configuration on-premise or on a hosted virtual machine.
(updated May 17, 2019) | - | [Installation Guide - Azure App Service](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/91/Sitecore%20Experience%20Commerce%2091%20Initial%20Release/Secure/Sitecore_XC-9.1_Installation_Guide_for_Azure.pdf) | Instructions for installing Commerce to a Microsoft Azure App Service. | - | [Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/91/Sitecore%20Experience%20Commerce%2091%20Initial%20Release/Secure/Sitecore_Experience_Commerce_Upgrade_Guide_for_9.1.pdf) | Instructions for upgrading a Sitecore XC 9.0 Update-3 release to 9.1, for On Premise deployments. | - | [Documentation](https://doc.sitecore.com) | Link to the Sitecore Documentation website. | - -## Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/91/Sitecore%20Experience%20Commerce%2091%20Initial%20Release/Secure/da-DK.xml) | Danish language translation file, for the Commerce Engine and Business Tools. Compatible with Sitecore Commerce Engine Connect 3.0. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/91/Sitecore%20Experience%20Commerce%2091%20Initial%20Release/Secure/de-DE.xml) | German language translation file, for the Commerce Engine and Business Tools. Compatible with Sitecore Commerce Engine Connect 3.0. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/91/Sitecore%20Experience%20Commerce%2091%20Initial%20Release/Secure/ja-JP.xml) | Japanese language translation file, for the Commerce Engine and Business Tools. Compatible with Sitecore Commerce Engine Connect 3.0. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/92/Sitecore_Experience_Commerce_92_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/92/Sitecore_Experience_Commerce_92_Initial_Release/Release_Notes.md deleted file mode 100644 index 2f36116d7..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/92/Sitecore_Experience_Commerce_92_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,136 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/92/Sitecore_Experience_Commerce_92_Initial_Release/Release_Notes ---- - -**August 2019 – released Sitecore Experience Commerce 9.2 Initial Release** - -Sitecore Commerce 9.2 focuses on increased solution performance and ability to scale, along with functional enhancements and corrective content. - -## New features/improvements - - | Area | Description | TFS no. | - | --- | --- | --- | - | Performance | Optimized the Commerce data storage and access layer to improve performance of data access intensive operations, e.g. fetching sellable items. Added relational entity storage with a new unique identifier (versus the existing resource intensive built-up ID). Added more entities and lists tables by entity types to share the load. New entity table for storing the entities’ json separately, making the tables sizes smaller.
These changes enable related improvements to operations including:
 - Read: One call to get the entity and related entities (e.g. LocalizationEntity), query entity by new unique identifier, load list of entities with their related entities.
 - Insert: One call to insert the entity, its localization entity and it's versioning entity. One call insert an entity to multiple lists, and to insert multiple entities to a list.
 - Update: One call to update the entity and its localization entity.
 - Delete: One call to delete the entity, the entity’s lists memberships, the entity’s localization entity. | 311097 | - | Performance Storefront | The Storefront shopping cart count can now be cached on the client browser to avoid unnecessary calls from each page to the Commerce Engine if no cart operations have been performed. This client-side caching is configurable, and active by default. This caching in most scenarios contributes to reduced wait times on the Storefront when the system is heavily loaded. However, there may be scenarios where performance would be optimized with this caching disabled, for example if many promotions affecting the cart are updated frequently, like every minute. | 319589 | - | Performance Storefront | In the Storefront you can now disable unnecessary re-calculation of the Commerce Minicart component upon fetching a fresh copy of cart information from the Commerce Engine. This is now configurable. By default the Storefront continues to re-calculate the minicart every time, to maintain backwards compatibility with the previous release. However, in most scenarios it is recommended that you disable unnecessary minicart recalculations to reduce wait times on the Storefront when the system is heavily loaded. There may be scenarios where performance would be optimized with continued minicart re-calculation, for example if many promotions affecting the cart are updated frequently, like every minute. | 320306, 318837 | - | Performance Storefront | The Commerce Product List component result-set from the AJAX call to get the products can now be cached on the client browser. This caching is configurable. By default caching is disabled to maintain backwards compatibility. However, in most scenarios it is recommended that you enable this caching to reduce wait times on the Storefront when the system is heavily loaded.
[Link to documentation on configuring the Product List cache.](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/configure-the-product-list-cache.html) | 280874 | - | Performance Storefront | API routes for individual Storefront AJAX calls to Connect can now be configured so they are not tracked for analytics and interpreted as page requests. It is recommended that each particular AJAX call not be routed to analytics if analytics is not required for that call. In most scenarios wait times on the Storefront can be reduced when the system is heavily loaded.
By default four AJAX calls have been configured to avoid analytics tracking, because these four in particular are not used in analytics.
[Link to documentation on excluding APIs from being tracked](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/exclude-apis-from-being-tracked-in-xdb.html) | 251371, 319240 | - | Performance | Added compression/decompression of Commerce Engine Connect (CE Connect) json files, to reduce network traffic and contribute in increased performance.
[Link to documentation on API response compression](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/api-response-compression.html) | 321604, 328491 | - | Performance | Reduced the request wait time at the Storefront pertaining specifically to shipping methods. | 275976 | - | Performance | Overcame a potential performance bottleneck in the GetSellableItemBlock that had previously been the result of needing to include a clone operation. | 322831 | - | Performance | Added the ability in Commerce Engine Connect to load all languages for an entity in one call, to reduce network traffic and contribute to increased performance. | 319396 | - | Performance | Removed unnecessary Commerce fields from the whitelist for indexing Azure search, in CE Connect, to optimize for performance. | 333934 | - | Redis Caching | Added centralized caching via Redis, enabling robust caching in distributed deployments, where Commerce Engine environments (Shops, Authoring, Minions, Ops) may deployed on separate hardware/resources. Redis is now required in production environments, and is required by default. Redis is the default, but single development environments can be configured to use cache in local memory instead.
[Link to Commerce Engine Caching documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/commerce-engine-caching.html) | 320006 | - | Marketing Automation Campaign | For the existing Abandoned Cart marketing automation campaign, the Storefront now includes renderings that include personalized content, including name and cart contents. So, the email sent to the customer can now include the entire contents of the abandoned cart. To implement, select this campaign module during the Storefront scaffolding stage, which will create an instance of the campaign. Create an automated email message and associate it with this campaign.
[Link to Commerce Marketing Automation Campaigns documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/working-with-commerce-marketing-automation-campaigns.html) | 231750, 319704 | - | Marketing Automation Campaign | Added a New Order Placed marketing automation campaign. The Storefront now includes renderings that include personalized content, including name and order content. So, the email sent to the customer can now include the entire contents of the placed order. To implement, select this campaign module during the Storefront scaffolding stage, which will create an instance of the campaign. Create an automated email message and associate it with this campaign.
[Link to Commerce Marketing Automation Campaigns documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/working-with-commerce-marketing-automation-campaigns.html) | 303910, 198736, 270977 | - | Search Storefront | The behaviour of search results, multiple or single, can now be configured in the Sitecore Control Panel. The default configuration returns multiple instances of the same product, one instance for each catalog category the product is associated with. This is by design because the appearance of the product might be styled differently for each instance; it can appear differently. A product could also be boosted in a particular category to appear at the top of its search results. Alternatively, the business may prefer displaying only one instance of the product in search results. Note that when duplicates set to be excluded, the search result does not display which instance was selected.
[Link to documentation on configuring site searches in SXA Storefront](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/configuring-site-searches-in-sxa-storefront.html) | 304076, 304073 | - | Storefront | The standard SXA navigation component can now be used in place of the Commerce navigation component for rendering the top-level categories. This SXA component is now used by default for new sites. Considerations:
 - The SXA navigation component default markup is framework agnostic and does not support Bootstrap or mobile by default; it requires direct navigation.
 - The Commerce navigation component uses Bootstrap in order to support mobile devices with limited screen sizes.
[Link to documentation on navigation methods](https://doc.sitecore.com/users/92/sitecore-experience-commerce/en/navigation-methods.html) | 268853 | - | Storefront | Added the ability to configure which Storefront pages are publicly available versus those that are private requiring authentication.
[Link to documentation on restricting page access with security roles](https://doc.sitecore.com/users/92/sitecore-experience-commerce/en/restricting-page-access-with-sxa-storefront-security-roles.html) | 276759 | - | Storefront | Security domains can now be created and deleted remotely on Content Delivery and Content Management instances. In distributed environments the Storefront and hence a Sitecore security domain is recreated on CD instances during the scaffolding stage, so the CD instance can authenticate customers properly when running live. The security domain is recreated on additional CM instances when there are multiple CM instances. | 280818, 280850 | - | Storefront | The customer's preferred language is now updated upon language selection when using the Commerce Language Selector component. The information is registered on the corresponding contact facet. The updated language is used when sending mail using EXM, so the customer receives mail in their preferred language. | 318742 | - | Solr | Commerce Engine indexes now support basic solr authentication for search within the Business tools.
[Link to Commerce documentation on Solr authentication](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/configure-solr-basic-authentication-for-commerce-engine-indexes.html).
[Link to XP documentation on protecting Solr over HTTP](https://doc.sitecore.com/developers/92/platform-administration-and-architecture/en/protecting-solr-over-http.html). | 277146 | - | Packaging | Commerce packages for on-premises installations are now deployed using Web Deploy Packages (WDPs) instead of .zip files. The Commerce package containing its Sitecore Installation Framework (SIF) scripts has been updated to support WDPs accordingly. Commerce install tooling now requires using WDPs instead of .zip files. .zip files are included on the download page only because they are needed for the in-place upgrade procedure. | 309002 | - | Deployment | Added the ability to un-install XC, by providing a script that is implemented using the Sitecore Installation Framework (SIF). The procedure to uninstall Commerce is described in the "Installation Guide - WDP for On Premise" that can be downloaded from the main Experience Commerce 9.2 - Initial Release download page.
[Link to Experience Commerce 9.2 download page](/downloads/Sitecore_Commerce/92/Sitecore_Experience_Commerce_92_Initial_Release) | 277108 | - | Upgrade | Commerce 9.2 includes a supported upgrade path from Commerce 9.1. The upgrade instructions incorporate scripts that perform the necessary data migration steps, e.g. for migration of data impacted by data layer performance optimizations. | 334358 | - -## Resolved issues - - | Area | Description | TFS no. | - | --- | --- | --- | - | Performance | Cloning method in GetSellableItemBlock leads to performance degradation. The cloning of Sellable Item was previously required for in-memory caching. This is solved in Commerce 9.2 by the centralized caching via Redis improvement (listed above), which is the default configuration. The current pre-9.2 in-memory caching approach continues to be an option for single server non-production deployments. Caution, this bug is not resolved when using in-memory caching. | 322831 | - | Performance Storefront | Removed duplicate AJAX requests that were executed when Sitecore Experience Form is used on a page with the "Storefront Branded Theme" commerce SXA theme. | 276334 | - | Performance Engine | Resolved an issue where the Commerce async interval strategy gets stuck if products change frequently. For example, with a 10,000 products with variants, changing products' properties once every 20 seconds caused sellableItemsIntervalAsynchronousStrategy to never complete execution, and then caused other Commerce index update strategies to queue.
Note: this fix is available also as a hotfix in Commerce 9.0.3. | 322755 | - | Performance | Improved the time to publish a Storefront site with sub-items after a restart. The publishing time is generally expected to be under a minute but depends greatly on the site and number of products. However times of over 2 minutes were observed with a site supporting a cataloging of around 100K products. | 321999 | - | Engine | Resolved an issue where the Minion was not correctly removed from the runningMinions bag if an exception occurred in the minion's Execute() method. If an exception occurred, it was expected that the failed minion is removed from the bag. | 337050 | - | Commerce Engine Connect | Index rebuild failed when SellableItem is associated to more than one Catalog and one of the Catalog is not selected in Sitecore Content Editor.
Note: this fix is available also as a hotfix in Commerce 9.1. | 347458 | - | Merchandising | Resolved incorrect autocomplete results for sellable items when typing in Business Tools. For example, when the user searched for a sellable item to associate to a bundle in Merchandising, they keyed in the sellable item ID. As characters are keyed in, the returned list continued to change as expected, but when the full ID had been keyed in the expected sellable item did not display. On the other hand, if the entire ID was pasted in at once, the results were correctly displayed. | 327945 | - | Merchandising | Resolved an issue where it was not possible to set decimal values in the Business Tools if both the Business Tools and the Commerce Engine pools used the same user with a culture where decimal separator is a comma. For example, with the Bus Tools and Engine both using the same user for their application pools, login with as the user and configure format setting to use for example the German language (or a language which has comma as decimal separator). Login to Bus Tools and try to add a decimal price into the Price Cart or a Sellable Item. As a result, the prices were added incorrectly. For example, it is not possible to enter a price of format 1,22 (with a comma). And, entering a price of 1.22 gets saved as 122. | 276950 | - | Merchandising | Custom child-views were only loaded by CommerceDataProvider into Sitecore if they were associated via ItemDefinition. In Merchandising, open the Habitat catalog and add a custom sellable item. Open this sellable item and add a custom view and a custom property to the view. Open Sitecore and run… Clear CommerceCaches. Run update DataTemplates. Open the custom item under the HabitatCatalog item. The user should expect the custom property to be displayed, but it did not display. | 278080 | - | Merchandising | Resolved the issue where SetCommerceEditorFormatter blocked the Translation command in the Content Editor. In the Content Editor, Versions tab, select the Translate button. The translation was not displayed in the Content Area as expected. | 278085 | - | Merchandising | Resolved an issue where after a sellable item was dissociated from its category, the sellable item was not correctly removed the index during incremental indexing. | 288560, 342767 | - | Merchandising | Resolved an issue where the element in databases/database/dataproviders configuration in the file /wwwroot/App_Config/Include/Y.Commerce.Engine/Sitecore.Commerce.Engine.DataProvider.config caused a duplicated __Standard Values' version.
Note: this fix is available also as a hotfix in Commerce 9.0.3. | 318916 | - | Merchandising | Resolved an issue where the wrong product template was on the Content Delivery server. Using the Commerce Composer feature, add a custom view to for example all the headphones. Delete/Update commerce templates. Refresh the Commerce templates and caches in the Content Editor. Publish. Recycle the app pool of the CD, or perform an IISReset. Put the attached get-product.aspx page on the CD server and request it in the browser. Find a headphones product item with the new template and use its ID on the test page. The expected result is the template of the item would be the new "headphones", but the actual result was the template was "Commerce Product". | 316250 | - | Orders | Resolved an issues where the Hold Order action did not resolve currency correctly. Open the /sitecore/Commerce/Commerce Control Panel/Shared Settings/Currency Settings/Currency Sets/Default item in the Content Manager. Set CAD Canadian Dollar value to the Default Currency field. Select any product in the Merchandising application and set its price only in Canadian Dollars. Login to the Storefront and buy this product. Open this order in the Orders application and make sure that order details reflect the correct price in CAD. Click the Hold Order button. The expected result is that CAD currently is displayed, but the actual display was in USD.
Note: this fix is available also as a hotfix in Commerce 9.0.3. | 276387 | - | Storefront | It is now possible to configure SXA configured presentation styles and grid settings for all Commerce components, which was only the case for a few Commerce components previously. | 317520 | - | Storefront | Creating the storefront security domain was previously a manual task in distributed environments, but it has been automated now. In distributed environments like Azure, the storefront security domain is re-created on CD instances during scaffolding, so the CD instance can authenticate customers properly. Domain is also re-created on additional CM instances in case of multiple CM instances.
[Link to documentation on security domains in SXA Storefront](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/security-domains-in-sxa-storefront.html)
[Link to documentation on cutomizing the site creation pipeline](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/customize-the-site-creation-pipeline.html) | 280818, 280850 | - | Storefront | After installing JSS in Storefront site, the JSS Layout Service now functions as expected. | 301199 | - | Storefront | SXA-related ComputedIndexField errors no longer appear in the indexing log. | N/A | - | Storefront | Only one instance of JQuery is now loaded as part of the storefront themes. This avoids duplicates and decreases the size and load time of the themes. JQuerycookie.js and JQueryplaceholder.js have been removed from the Commerce core library theme. | 317790 | - | Storefront | Landing on a wildcard page for either product or category when in Direct Navigation mode no longer throws an exception. | 328029 | - | Storefront | The SXA Search Box component is no longer failing when used on a Commerce Page page design. The JavaScript issue has been resolved. | 328840 | - | Storefront | Fixed a bug in SXA to resolve missing Creative Exchange export assets. Creative Exchange export assets are no longer missing. | 309933 | - | Storefront | Indexing errors and exceptions have been removed: "Could not compute value for ComputedIndexField: ispoi ...", "Could not compute value for ComputedIndexField: sxacontent ...", "Could not compute value for ComputedIndexField: urllink ..." | 276625, 329812, 318838 | - | Storefront | The Product Price component now shows the correct price regardless of whether there are variants associated with the product and despite the order of the Product Variant and Product Price components on the page. | 324031 | - | Storefront | "Use Index File for Product Status in Lists" setting did not function because it relied on fields that did not exist in sitecore_master\web_index. The setting field has been removed as it was no longer supported by the Commerce Engine. | 329913 | - | Storefront | A hardcoded path in the Storefront Minicart component has been removed and replaced with a component setting to configure the image to use for progress indicator. | 323583 | - | Storefront | Hardcoded labels in the Order Lines component has been resolved. Variant options for color and size have been replaced with dynamic labels for variant options present. | 324389 | - | Storefront | Resolved the scenario where the Media node displayed the Habitat media folder multiple times.
Note that for previous Commerce releases, a work-around to the issue includes manually removing the duplicate references to the media folder. | 317019 | - | Storefront | Landing on the canonical URL in Direct Navigation mode threw an exception. This has been resolved. | 328029 | - | Connect | Anonymous shoppers no longer break personalization rules. Personalization rules for anonymous shoppers now functions as expected. | 323837 | - | Solr | Resolved errors occurring when searching, where SolrUrl ends with uppercase "SOLR". Open CommerceAuthoring_Sc9\wwwroot\data\Environments\PlugIn.Search.Solr.PolicySet-1.0.0.json. Provide the following value into SolrUrl field: "https://localhost:8983/SOLR". Bootstrap the config changes. Search for any entity in BizFx. The search is expected to work correctly, but instead an error was logged, "Problem accessing /SOLR/CatalogItemsScope/select". | 335828 | - | App Insights | Resolved the issue where App Insights data for the Commerce Engine could not be accessed from the Azure Portal. | 337367 | - | Deployment | Resolved an issue were a non-default Experience Platform password caused the Commerce deployment to fail. If the user changed the default XP admin password in XP, it caused the XC deployment to fail during bootstrap and the EnsureSyncDefaultContentPaths task. | 329413 | - -## Breaking changes - - | Area | Description | TFS no. | - | --- | --- | --- | - | Redis Caching | Added centralized caching via Redis where Commerce Engine environments (Shops, Authoring, Minions, Ops) may be deployed on separate hardware/resources. Redis is now required in production environments, and is required by default. Redis is the default, but single development environments can be configured to use cache in local memory instead.
[Link to Commerce Engine Caching documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/commerce-engine-caching.html) | 320006 | - | Engine | Merged the Settlement minion into Release minion, to overcome risk of concurrency issues between the two minions. If out of box, then update the environment configuration to use the Release minion only, and bootstrap. Sales activities for federated payments are now settled by the ReleasedOrdersMinion, sales activities for gift cards payments are still settled by the PendingOrdersMinion.
The ReleasedOrdersMinion tries to settle the federated payments only once. If Braintree fails to settle, the sales activity and the order will be mark as problem and move to the problem lists, if not the sales activity is marked as settled and move to the settled lists and the order is marked as completed and move to the completed lists. | 325520 | - | Storefront | For new sites, the standard SXA Navigation component is now used for category navigation as it offers more functionality and supports rendering variants. However, the default semantic HTML does not support mobile devices in terms of responsive design. For mobile support do one of 2 things: 1) replace the SXA Navigation component with the Commerce Navigation component or 2) Create a custom view for the navigation component that supports responsive design using Bootstrap or similar. See "Commerce Navigation rendering variant" in the documentation. | 268853, 328654, 328655 | - | Storefront | As part of supporting private sites and security configured on Home page item, the field on Home item referencing back to the control panel settings for the site has been moved under "\{site\}/settings/commerce/Control Panel Configuration".
When upgrading from XC 9.1 -> XC 9.2, the new configuration item is created and set to the value from under Home item to support the new way of configuring control panel reference. | 276759 | - | Storefront | Removed obsolete 3rd party JavaScript libraries changes: Removed jquery-321.js. Removed jquerycookie.js. Removed jqueryplaceholder.js. | 317790 | - | Storefront | Method return types have changed. The return type of method "GetProductPriceRenderingModel" in ProductPriceRepoitory.cs has changed from "CatalogItemRenderingModel" to "ProductPriceRenderingModel". | 324031 | - | Storefront | Updates related to creating security domains remotely. The "Set Site Domain" item has moved from "/sitecore/system/Modules/PowerShell/Script Library/Commerce Experience Accelerator/Functions/Commerce Site Features/Storefront Template" to " /sitecore/system/Modules/PowerShell/Script Library/Commerce Experience Accelerator/Functions/Commerce Site Features/Storefront Components". | 280818 | - | Storefront | Scripts have been removed from the Storefront Branded Theme; it now contains only stylesheets. This change was made to ensure the upgrade of component themes (scripting) for future Storefront versions does not impact the customer who is extending the Storefront Branded Theme.
[Link to documentation on extending the Storefront branded theme](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/extend-the-storefront-branded-theme.html) | 311926 | - -## Known issues - - | Area | Description | TFS no. | - | --- | --- | --- | - | Performance | Azure PaaS search logs of type INFO are written to the file system by default. Depending on conditions, this logging could impact maximum achievable Storefront page view rates and response times. To maximize performance consider removing the collection of INFO logs, for example by setting the logging threshold to WARNING or ERROR. | N/A | - | Performance Counters | In an Azure Web Application deployment, Windows Performance Counters are not supported. However the Commerce Engine continues to write counters by default, causing an unauthorized access exception in the Commerce Engine log file. | 278992 | - | Business Tools | Unable to create a custom qualification when the input field is the DateTime picker. For example, create a custom qualification plugin and set the property type to DateTimeOffset: public IRuleValue FutureEventStartDate \{ get; set; \}. When creating a new promotion and adding a new qualification to it, after setting the "FutureEventStartDate" and "FutureEventEndDate" values, the custom qualification fails to be created. | 282057 | - | Marketing Automation Campaigns | Order confirmation and Abandoned Cart emails are only sent to registered customers. These Marketing Automation Campaign emails are not sent to customers browsing or doing an anonymous checkout, despite having entered their email address at the billing step in the anonymous checkout. | 335975 | - | Storefront | Storefront does not support SXA wireframe mode.
[Link to documentation on SXA Wireframe mode](https://doc.sitecore.com/users/sxa/19/sitecore-experience-accelerator/en/the-view-modes.html) | 303826 | - | Storefront | When Template Overrides are missing and direct navigation is enabled, the site does not function as expected. This can happen either when upgrading from a Commerce release earlier than Commerce 9.1, or when creating a new catalog and associating it with a storefront. To work around the problem: 1) create Page Designs and templates if not present (prior to 9.1), and 2) configure template-2-Page Design mappings.
[For more information see "Walkthrough: Configure direct navigation on an existing site"](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/walkthrough--configuring-direct-navigation-on-an-existing-site.html) | 311594 | - | Storefront | An error message "Invalid catalog Id" appears when searching a new site without a catalog associated. | 281284 | - | Storefront | Created theme is not showing in the Select Theme option in EE upon creating a site with that has Commerce module/s selected. To work around the issue, configure the missed theme after site creation by navigating to "\{site\}/Presentation/Page Designs" and update the value for field Theme under section Styling. | 316056 | - | Storefront | If customers in extreme cases places orders so fast that the order confirmation has not been processed by the New Order Placed Marketing Automation campaign and Email Experience Manager, the following orders will customer will not re-enter the campaign the second time and as a consequence no order confirmation is sent out. | 319996 | - | Storefront | Personalization rules are not functioning when "product id" used as a condition. When trying to add a personalization rule for the Shopping Cart page by using "product id" in any conditions, the personalization page is not correctly applying the rules. The result is that the text is displayed always, instead of as defined by the rule. | 204586 | - | Storefront | No category is displayed in the Category Navigation component in an Azure PaaS environment. Navigate to the QA page in the Experience Editor, after drag/dropping the Category navigation component, no Category displays. To work around the issue, restart the CD. Note that this issue functions correctly on the live site after publishing. | 341397 | - | Storefront | Following an upgrade, when selecting the Dashboard link on the footer of the Storefront page, the link incorrectly navigates to the Sitecore sign in page, instead of the Storefront sign in page. To work around the issue, select Sign In from the top menu bar of the Storefront page. | 319848 | - | Storefront | Within the QA page in Experience Editor mode, the "Show more text" button displayed below the promoted products is not actually display the "Show more text" message on the button. | 321662 | - | Connect | Orders do not display correctly in the Experience Analytics and Experience Profile reports applications, for example the Experience Profile report under the Commerce > Orders tabs. To work around the issue, re-instate the processor TriggerOrderOutcome that is commented out in the “/App_Config/Include/Sitecore.Commerce.Orders.config” file, under the pipeline “commerce.orders.submitVisitorOrder”.
The root cause is the processor that triggers the Product Purchase outcome in Connect is disabled, which causes the outcome not to be triggered and reports depending on the outcome not to show any data. | 234685 | - | Deployment | A scaled deployment may encounter issues with verification of long running commands through the API call. The task ID used to check if the long running command is completed is tied to a specific instance, so this will not work correctly in a scaled environment. | 340148, 323216 | - | Deployment | After a deployment the user is unable to retrieve a catalog item from the Context Database. To work around the issue, restart the Content Delivery server. | 333936 | - -## Documentation updates - - | Area | Description | TFS no. | - | --- | --- | --- | - | Performance Storefront | Added a topic on excluding APIs from being tracked in xDB.
[Link to documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/exclude-apis-from-being-tracked-in-xdb.html) | 319240 | - | Develeper Reference | Added new topics on working with Commerce pipelines and blocs.
[Link to documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/work-with-commerce-engine-pipelines-and-blocks.html) | N/A | - | Develeper Reference | Added a new topic on describing elements of Commerce engine plugin.
[Link to documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/elements-of-a-commerce-engine-plugin.html) | N/A | - | Develeper Reference | Added a new topic describing the content of the Sitecore Commerce Engine SDK.
[Link to documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/sitecore-commerce-engine-sdk.html) | N/A | - | DevOps Reference | Added a new topic on explaining concepts of the Commerce Engine environments.
[Link to documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/commerce-engine-environments.html) | N/A | - | DevOps Reference | Added a new topic on Commerce Engine policies.
[Link to documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/commerce-engine-policies.html) | N/A | - | DevOps Reference | Added a new topic on how to install translation files for the Business Tools.
[Link to documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/install-a-translation-file-for-the-xc-business-tools.html) | N/A | - | DevOps Reference | Added a new topic describing the content of the Sitecore Commerce Engine SDK.
[Link to documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/sitecore-commerce-engine-sdk.html) | N/A | - | Storefront | Added a topic on building a Commerce email message template.
[Link to documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/walkthrough--build-a-commerce-email-message-template.html) | 316072 | - | Storefront | Added a topic on changing the styling of a Commerce email.
[Link to documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/change-the-styling-of-a-commerce-email-message.html) | 316072/td> | - | Storefront | Added a topic on Commerce Navigation rendering variants.
[Link to documentation](https://doc.sitecore.com/users/92/sitecore-experience-commerce/en/commerce-navigation-renderings.html) | 268853 | - | Storefront | Added a topic on configuring the minicart rendering.
[Link to documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/configure-the-minicart-rendering.html) | N/A | - | Storefront | Added a topic on configuring the Product List cache.
[Link to documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/configure-the-product-list-cache.html) | 280874 | - | Storefront | Added a topic on customizing the Commerce Navigation rendering variant.
[Link to documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/customize-the-commerce-navigation-component.html) | 268853 | - | Storefront | Added a topic on customizing the site creation pipeline.
[Link to documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/customize-the-site-creation-pipeline.html) | N/A | - | Storefront | Added a topic on extending the Storefront Branded theme.
[Link to documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/extend-the-storefront-branded-theme.html) | N/A | - | Storefront | Added a topic on getting started with Storefront for business users.
[Link to documentation](https://doc.sitecore.com/users/92/sitecore-experience-commerce/en/getting-started-with-storefront-for-business-users.html) | N/A | - | Storefront | Added a topic on getting started with Storefront for developers.
[Link to documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/getting-started-with-storefront-for-developers.html) | N/A | - | Storefront | Added a topic on rendering the catalog on the Storefront.
[Link to documentation](https://doc.sitecore.com/users/92/sitecore-experience-commerce/en/render-the-catalog-on-the-storefront.html) | N/A | - | Storefront | Added a topic on restricting page access with SXA Storefront security roles.
[Link to documentation](https://doc.sitecore.com/users/92/sitecore-experience-commerce/en/restricting-page-access-with-sxa-storefront-security-roles.html) | 276759 | - | Storefront | Added a walkthrough topic on enabling direct navigation for customized Commerce entities.
[Link to documentation](https://doc.sitecore.com/developers/92/sitecore-experience-commerce/en/walkthrough--enabling-direct-navigation-for-customized-commerce-entities.html) | N/A | - | Marketing Automation | Added a topic on understanding Commerce Marketing Automation Campaigns.
[Link to documentation](https://doc.sitecore.com/users/92/sitecore-experience-commerce/en/understanding-commerce-marketing-automation-campaigns.html) | N/A | - | Marketing Automation | Added a walkthrough topic on Setting up a Commerce Marketing Automation Campaign.
[Link to documentation](https://doc.sitecore.com/users/92/sitecore-experience-commerce/en/walkthrough--setting-up-a-commerce-marketing-automation-campaign.html) | N/A | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/92/Sitecore_Experience_Commerce_92_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/92/Sitecore_Experience_Commerce_92_Initial_Release/index.md deleted file mode 100644 index 77b2aaeb7..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/92/Sitecore_Experience_Commerce_92_Initial_Release/index.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: "Sitecore Experience Commerce 9.2 Initial Release" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/92/Sitecore_Experience_Commerce_92_Initial_Release.aspx ---- - -Initial launch of Sitecore Experience Commerce 9.2, focusing on increased solution performance and ability to scale, along with functional enhancements and corrective content. Sitecore Commerce 9.2 is compatible with Sitecore Experience Platform 9.2 Initial Release. Refer to the [Sitecore Experience Commerce 9 Compatibility Table](https://kb.sitecore.net/articles/804595) for the software and version prerequisites. - -Return to [all available versions](/downloads/Sitecore_Commerce) - -## Download options - - | Resource | Description | - | --- | --- | - | [Packages for On Premise WDP 2019.07-4.0.165](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/92/Sitecore%20Experience%20Commerce%2092%20Initial%20Release/Secure/Sitecore.Commerce.WDP.2019.07-4.0.165.zip) | The Commerce packages and supporting software development kits (SDK) for on-premise or hosted virtual machine deployments using Web Deploy Packages (WDP). | - | [Packages for Azure App Service 2019.07-4.0.165](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/92/Sitecore%20Experience%20Commerce%2092%20Initial%20Release/Secure/Sitecore.Commerce.Azure.2019.07-4.0.165.zip) | The Commerce Web Deploy Packages (WDPs) for deployment to a Microsoft Azure App Service. | - | [Packages for Upgrading On Premise Solutions 2019.07-4.0.165](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/92/Sitecore%20Experience%20Commerce%2092%20Initial%20Release/Secure/Sitecore.Commerce.2019.07-4.0.165.zip) | The Commerce packages and supporting software for upgrading existing on-premise deployments. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Commerce/92/Sitecore_Experience_Commerce_92_Initial_Release/Release_Notes) | New features/improvements, resolved issues, breaking changes, known issues. Documentation updates are also listed. | - | [Installation Guide - WDP for On Premise](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/92/Sitecore%20Experience%20Commerce%2092%20Initial%20Release/Secure/Sitecore_XC-9.2_Installation_Guide_for_On-Prem.pdf) | Instructions for installing Commerce in a single-server configuration on-premise or on a hosted virtual machine using Web Deployment Packages (WDP) | - | [Installation Guide - Azure App Service](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/92/Sitecore%20Experience%20Commerce%2092%20Initial%20Release/Secure/Sitecore_XC-9.2_Installation_Guide_for_Azure.pdf) | Instructions for installing Commerce to a Microsoft Azure App Service. | - | [Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/92/Sitecore%20Experience%20Commerce%2092%20Initial%20Release/Secure/Sitecore_Experience_Commerce_Upgrade_Guide_for_9.2.pdf) | Instructions for upgrading a Sitecore XC 9.1 release to 9.2, for On Premise deployments. | - | [Documentation](https://doc.sitecore.com/) | Link to the Sitecore Documentation website. | - -## Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/92/Sitecore%20Experience%20Commerce%2092%20Initial%20Release/Secure/da-DK.xml) | Danish language translation file, for the Commerce Engine and Business Tools. Compatible with Sitecore Commerce Engine Connect 4.0. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/92/Sitecore%20Experience%20Commerce%2092%20Initial%20Release/Secure/de-DE.xml) | German language translation file, for the Commerce Engine and Business Tools. Compatible with Sitecore Commerce Engine Connect 4.0. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Commerce/92/Sitecore%20Experience%20Commerce%2092%20Initial%20Release/Secure/ja-JP.xml) | Japanese language translation file, for the Commerce Engine and Business Tools. Compatible with Sitecore Commerce Engine Connect 4.0. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/93/Sitecore_Experience_Commerce_93_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/93/Sitecore_Experience_Commerce_93_Initial_Release/Release_Notes.md deleted file mode 100644 index 895ea9737..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/93/Sitecore_Experience_Commerce_93_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,122 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce/93/Sitecore_Experience_Commerce_93_Initial_Release/Release_Notes ---- - -**Jan 2020 – released Sitecore Experience Commerce 9.3 Initial Release** - -Sitecore Commerce 9.3 focuses on increased solution performance and ability to scale, along with functional enhancements and corrective content. - -## New features/improvements - - | Area | Description | TFS no. | - | --- | --- | --- | - | Scalability - Indexing | Added a new Commerce based index that replaces the Sitecore Master and Web indexing of Commerce managed items. Significantly reduces the time to index Commerce items, due in part to reducing communications between Sitecore and the Engine.
Azure Search with on-prem -- As a result of this feature, on-prem deployments using SIF no longer support automatic configuration of Azure Search. This needs to configured separately after installation if you wish to use Azure Search with an on-prem deployment. Cloud deployments have not changed.
Content Editor Indexing Functionality -- Indexing for catalog items can still be done from the Indexing Manager in XP, but  you can also index catalog items using Postman. Indexing from Postman does not add/remove content items in the index, it's only for catalog items.  New Postman samples have been provided in the SDK.
[Link to documentation for incremental index update](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/incremental-index-updates.html) | 350723 | - | Scalability - response time | Replaced the cache in CE Connect with the centralize Redis cache. This resolved the presence of intermittent spikes in response times when testing of large distributed deployments under relatively high loads.
[Link to documentation on commerce engine connect caching](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/commerce-engine-connect-caching.html) | 360554 | - | Scalability - page view rate | Reduced the depth of pipeline calls, and the allocation of tasks. Avoided calling commands that only calls a pipeline; called the pipeline directly instead. Avoided calling pipelines within blocks, when the pipeline can be added as a block of the main pipeline. Avoided the use of Task.Run. Used ConfigureAwait(false) in async methods. Removed non-value blocks from pipelines, e.g. those that return same object without modifications.
| 349201, 351012, 351018, 339399 | - | Scalability - checkout rate | Combined the price and stock API call from the Storefront to the Commerce Engine using method GetSelleableItemSummary, to improve performance.
| 343121, 342890 | - | Scalability - promotions | Added search to the Business Tools for promotions, which required adding promotions to the Commerce index. This reduces the time to retrieve promotions in the Business Tools by avoiding needing to load all promotions from the list. Translated most of the filtering blocks in the IDiscoverPromotionsPipeline into search filter criteria in the search. Added a new Promotions index accordingly.
[Link to documentation on commerce search and indexing](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/commerce-search-and-indexing.html) | 359226 | - | Scalability - price cards | Added search to the Business Tools for price cards, which required adding price cards to the Commerce index. This reduces the time to retrieve price cards in the Business Tools by avoiding needing to load all price cards from the list.
[Link to documentation on how to work with price books](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/work-with-price-books.html)[Link to documentation on commerce search and indexing](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/commerce-search-and-indexing.html) | 359225 | - | Engine Indexing | Added the ability to implement the index SwitchOnRebuild feature to enable Solr or Azure searching operations to continue while an index rebuild is in progress.
[Link to documentation on switching indexes during rebuild](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/switch-commerce-indexes-during-rebuild.html) | 293569, 351671 | - | Sellable item associations | Added the ability to change a parent association from the sellable item, instead of needing to create the association from the new parent (where finding the sellable item could be cumbersome).
[Link to documentation on working with a sellable item](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/work-with-a-sellable-item.html) | 276437 | - | Business Tools Usability | Added paging to the display of lists of promotions, coupons, inventory sets, orders.
| 287030, 286796, 287029 | - | Engine Indexing | Added the ability to implement the index SwitchOnRebuild feature to enable Solr or Azure searching operations to continue while an index rebuild is in progress.
[Link to documentation on switching indexes during rebuild](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/switch-commerce-indexes-during-rebuild.html) | 293569,351671 | - | Sellable item associations | Added the ability to change a parent association from the sellable item, instead of needing to create the association from the new parent (where finding the sellable item could be cumbersome).
[Link to documentation on working with a sellable item](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/work-with-a-sellable-item.html) | 276437 | - | Business Tools Usability | Added paging to the display of lists of promotions, coupons, inventory sets, orders.
| 287030,286796,287029 | - | Business Tools Usability | Improved the display of sections on a Sellable Item page; improved the order of sections to focus on the important sections at the top, and the details lower down on the page.
| 279422 | - | Promotions | Added the ability to extend the end date of active promotions.
[Link to documentation on working with promotions](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/work-with-promotions.html) | 288457 | - | Promotions | Category Level Promotions. Added the ability to create a promotion that applies to all products in a category using new qualification condition Item is in [specific] Category along with two new benefits, Get Cart Item in Category Percent Off and Get Cart Item in Category Amount Off.
[Link to documentation on promotions qualifications](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/promotions-qualifications.html) | 271231 | - | Promotions | Added the ability to search for promotions in the Business Tools, so that it is easier to find the relevant promotion books and promotions when there are a large number configured.
[Link to documentation on working with promotions](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/work-with-promotions.html) | 361125 | - | Price Cards | Added the ability to search for price cards in the Business Toos, so that it is easier to find the relevant price books and price cards when there are a large number configured.
[Link to documentation on working with inventory](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/work-with-price-books.html) | 278380 | - | Inventory | Improved navigation to the inventory set page, for a product variant.
| 324042 | - | Inventory | Added the ability to search for sellable items in the Inventory Manager user interface, so it is easier to find the sellable items associated with inventory sets.
[Link to documentation on working with inventory](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/work-with-inventory.html) | 276428 | - | Inventory | Added the ability to remove inventory sets using the Inventory Manager user interface.
[Link to documentation on working with inventory](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/work-with-inventory.html) | 350402 | - | Connect | Added the ability to configure product recommendations emails, triggered from Marketing Automation campaigns that are based on shoppers' purchases.
[Link to documentation on working with commerce marketing automation campaigns](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/working-with-commerce-marketing-automation-campaigns.html) | 348829, 348760 | - | Connect | Added the ability to configure product recommendations emails, triggered from the List Manager with recommendations based on customer purchase history.
[Link to documentation on working with commerce marketing automation campaigns](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/working-with-commerce-marketing-automation-campaigns.html) | 364370, 364468, 348760 | - | Connect | Added the ability to configure product recommendations emails, triggered from the List Manager based on arbitrary segmentation and with the ability to include arbitrary products based on queries.
[Link to documentation on working with commerce marketing automation campaigns](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/working-with-commerce-marketing-automation-campaigns.html) | 364370, 364966, 348760 | - | Connect | Added the ability to query on relevant commerce models and properties, for example query on orders placed, page event triggered including abandoned cart page event.
[Link to documentation on searching contacts and commerce interactions in the xdb index](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/search-contacts-and-commerce-interactions-in-the-xdb-index.html) | 228195 | - | Connect | Updated xProfile reports to work with Abandoned Carts and orders based on change in Marketing Automation campaign and page events triggered.
| 348820 | - | Connect | Added support for anonymous customers in commerce Marketing Automation campaigns, allowing order confirmations and abandoned cart notifications to be sent to customers concluding or attempting an anonymous checkout.
[Link to documentation on multiple enrollments and anonymous contacts in commerce marketing automation campaigns](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/multiple-enrollments-and-anonymous-contacts-in-commerce-marketing-automation-campaigns.html) | 347460, 335975 | - | Connect | Added support for re-entry into the New Order Placed campaign allowing customers to be in the campaign multiple  times  concurrently.
| 334348 | - | Connect | Added new commerce-specific calculated facet CommerceInteractionsCache for use with segmentation rules and live site personalization.
[Link to documentation on creating a segmented list of customers who purchased a specific product](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/commerce-interactions-cache.html) | 353812 | - | Connect | Added a segmentation rule targeting customers who purchased a given product.
[Link to documentation on creating a segmented list of customers who purchased a specific product](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/create-a-segmented-list-of-customers-who-purchased-a-specific-product.html) | 334267 | - | Connect | IContactCommerceInteractionProvider and ContactCommerceInteractionProvider provider
[Link on documentation on commerce segmentation predicates](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/commerce-segmentation-predicates.html) | N/A | - | Storefront | Added a generic Commerce Search Results component that can list product cards with price and stock info based on dynamic queries. This is the first Sitecore Experience Accelerator (SXA) component built and released using a Scriban template.
[Link to documentation on choosing between available renderings for product lists](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/choosing-between-available-renderings-for-product-lists.html)
[Link to documentation on commerce search results rendering](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/commerce-search-results-rendering.html)
[Link to documentation on customizing the commerce search results rendering](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/customizing-the-commerce-search-results-rendering.html)
| 348686,353257 | - | Storefront | Updated the Storefront site template to use the Commerce Search Result component for promoted products on Home page.
[Link to documentation on commerce home page](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/commerce-home-page.html)
[Link to documentation on rendering a product list online](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/render-a-product-list-online.html)
[Link to documentation on modify default storefront site template pages to use the product list and promoted product renderings](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/modify-default-storefront-site-template-pages-to-use-the-product-list-and-promoted-product-renderings.html)
| 358154 | - | Storefront | Updated the Storefront site template to use the Commerce Search Result component for products on the Category page.
[Link to documentation on commerce catalog category page](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/commerce-catalog-category-page.html)
| 281379 | - | Storefront | Updated the Storefront site template to use the Commerce Search Result component for related products on the Product Detail page.
[Link to documentation on commerce product detail page](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/commerce-product-detail-page.html)
| 363282 | - | Storefront | Updated the Storefront site template to use the Commerce Search Result component for products on the search results page.
[Link to documentation on commerce search results page](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/commerce-search-results-page.html)
| 303827 | - | Storefront | Updated the Storefront site template to use the Sitecore Experience Accelerator (SXA) Search Box component for global searching and providing type-ahead and predictive suggestions.
[Link to documentation on commerce search results page](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/commerce-search-results-page.html)
| 303827 | - | Storefront | Updated the Storefront site template to use the new Sitecore Experience Accelerator (SXA) Aggregated Facet component for easy facet configuration. This allows facets to be hidden when no values are present, and it allows multi-facet selection leading to improved usability.
[Link to documentation on use and configure a facet for the storefront search](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/use-and-configure-a-facet-for-the-storefront-search.html)
[Link to documentation on choosing between available renderings](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/choosing-between-available-renderings.html)
| 311970, 303838 | - | Storefront | Updated the Storefront site template to use the new Sitecore Experience Accelerator (SXA) Facet Summary component allowing end-customers to de-select facets easily, and to have a quick overview of selected facets.
[Link to documentation on commerce catalog category page](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/commerce-catalog-category-page.html)
| 359629 | - | Storefront | Updated the Storefront site template to use the Sitecore Experience Accelerator (SXA) Search Box on Category pages to allow local filtering and searching amongst products in the category, leading to improved usability.
[Link to documentation on commerce catalog category page](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/commerce-catalog-category-page.html)
| 362962 | - | Storefront | Added a new Email Experience Manager (EXM) mail template for recommended products that can be used for both automated campaigns triggered from Market Automation, or with regular campaigns.
[Link to documentation on creating a regular email campaign for recommended products](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/create-a-regular-email-campaign-for-recommended-products.html)
| 365337, 365408, 348827 | - | Storefront | Improved the ability and flexibility for developers/editors to create their own search queries, by adding additional Commerce search tokens to the default Sitecore Experience Accelerator (SXA) search functionality.
The new search token ProductRelationship includes products associated with the current product in a specified relationship, which is used on the Product Detail page to render lists of related products.
[Link to documentation on commerce search scopes](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/commerce-search-scopes.html)
| 363282 | - | Storefront | Improved the ability and flexibility for developers/editors to create their own search queries, by adding additional Commerce search tokens to the default Sitecore Experience Accelerator (SXA) search functionality.
The new search token ItemsWithTheSameValueInParentChildFields is used when navigating categories in a hierarchical structure. It only includes immediate children; it excludes sub-categories and products.
[Link to documentation on commerce search scopes](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/commerce-search-scopes.html)
| 348356 | - | Storefront | Added personalization based on inventory (inventory provider implementation).
[Link to documentation on personalizing a storefront page based on inventory](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/personalizing-a-storefront-page-based-on-inventory.html)
| 281116 | - | Storefront | Improved Analytics by adding the ability to assign content profile cards to catalog items, and having them applied to customers. This applies when navigating using wildcards; this does not apply when using Direct Navigation that was added in XC9.1.
[Link to documentation on navigation methods](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/navigation-methods.html)
| 299462 | - -## Resolved issues - - | Area | Description | TFS no. | - | --- | --- | --- | - | Engine Indexing | Improved the performance of indexing performance via a new Commerce-based index that replaces the current Sitecore Master and Web indexing, for Commerce items.
| 307147 | - | Engine Indexing | Resolved an issue where rebuilding the index failed where the SellableItem was associated to more than one Catalog and one of the Catalogs was not selected in Sitecore Content Editor.
| 347458 | - | Performance | Improved performance of the PopulateCartLineItemsBlock by using multithreading instead of using a time-consuming foreach loop.
| 326211 | - | Engine authentication | Resolved an issue were Sitecore could not connect to the Commerce Engine when the certificate thumbprint was in lowercase. This was resolved by making the checking criteria case insensitive.
| 342268 | - | Engine | Resolved a Transaction Exception that was thrown when SqlCommand objects are not correctly disposed of if the corresponding SqlConnection is reused.
| 351686 | - | Engine | Resolved an issue where an InvalidShop error appears…"Shop 'CommerceEngineDefaultStorefront' does not exist." when syncing Control Panel items with the Engine, for example after stopping and restarting the Content Management role and the Commerce Engine.
| 358019 | - | Engine | Resolved an issue with Minions that run for long periods of time, where a concurrency errors appeared in the Engine logs.
| 336882 | - | Engine | Updated the default WakeupInterval value of the PurgeCartsMinion to be set to 24 hours (01.00:00:00). It had been incorrectly set to 24 days (24:00:00) and was incorrect in documentation.
| 360544 | - | Engine | Resolved an issue where the SqlDataReader remained open within Sitecore.Commerce.Plugin.SQL.GetListEntitiesCommand.
| 354104 | - | Catalog mappings | Resolved an issue where in-memory mappings collection, CatalogRepository.MappingEntries, gets emptied if there is a failure in reloading mappings. Now if the mappings does not get loaded properly, e.g. due to network failure or timeout, then it continues using previously loaded in-memory mappings.
| 347551 | - | Catalog associations | Resolved a limitation in dissociating a category from another category causes the category to be incorrectly removed from the display in the Sitecore Content Editor, because the ParentCatalogList was removed.
| 336979 | - | Catalog associations | Fixed an issue where disassociating a category from a parent then associating it to a new parent would not correctly update the full path in the index.
| 347998 | - | Catalog associations | Resolved an issue where dissociating at SellableItem from a category does not fully process the disassociation, causing an issue when the next incremental indexing is run. This issue occurred when the sellableItem had been associated with multiple categories across more than one catalog.
| 352513 | - | Pricing | Fixed an issue where the price card snapshot applied to a product variant was not correctly removed after having disabled that variant.
| 358297 | - | Import/Export | Resolved a limitation where a catalog exported from an Environment, which had an associated Storefront, could not be imported to a different Environment that did not have that same Storefront associated with it.
| 342372 | - | Business Tools | Fixed page navigation issue involving with loading wrong version when there are multiple Entity Versions configured. Opening a SellableItem after navigating to different pages now loads the latest version as expected, instead of loading version 1.
| 336647 | - | Business Tools | Improved the navigation to view the inventory of a sellable item. Selecting the Inventory Set for a product variant now navigates to the inventory page where the product variant is located as expected, instead of navigating to the first page of the inventory set.
| 324042 | - | Business Tools | Resolved an issue with Entity Versions, where the user would enter a value in the Weight field of a SellableItem entity version but the value of 0 would get saved instead.
| 339274 | - | Business Tools | Resolved a navigation issue where the business user working with an active order in the Orders tool intended to navigate to the customer entity view page was directed to the Business Tools home page.
| 348783 | - | Storefront | Resolved an issue in processing price cards on product variants, where the list price was not correctly adjusted to the valid snapshot price.
| 350852 | - | Storefront | Resolved an issue in the Sitecore Control Panel where the field for configuring the Commerce Environment that the Storefront is associated with was missing. The Environment field and its value were not displaying correctly, for example in Commerce Control Panel > Storefront Settings > Storefronts.
| 356514 | - | Storefront | Resolved error… "Error: The email address does not exist." message that was displayed on the Storefront after trying to reset the password via the Forgot Password functionality.
| 276356 | - | Storefront | Resolved an issue where the Minicart incorrectly displayed the cart content without the discounted price on the cart line subtotal, and without promotional messages.
| 359147 | - | Connect | Resolved an exception thrown where processors of the convertToXConnectEvent pipeline do not respect page events without custom values. An exception was thrown for the first encountered Commerce event, and the remainder of events did not get triggered.
| 331669 | - | Connect | Resolved an "Object reference not set to an instance of an object." exception that was thrown when on initializing the PreviousStateName value was not initialized and could not be read.
| 310923 | - | Connect - personalization | Resolved limitations preventing setting up inventory personalization rules, in Connect.
| 281116 | - | Connect - personalization | Resolved an issue where the Checkout button was not displayed on the Storefront after creating a personalization rule involving setting a Specific Product Quantity Condition.
| 326232 | - | Connect - personalization | Resolved an issue where the Checkout button was not displayed on the Storefront after creating a personalization rule involving setting a Total Product Quantity Condition.
| 251521 | - | Connect - analytics | Resolved an issue where analytics data was missing because the Sitecore.Commerce.Pipelines.Orders.TriggerOrderOutcome processor was disabled by default.
| 329511 | - | Connect - analytics | Resolved a System.Collections.Generic.KeyNotFound exception after attempting to register a new search page event for viewing in an Experience Analytics report.
| 324455 | - | Deployment | Updated the collations pertaining to Global and SharedEnvironments databases, to align the collations set for on-premise and Azure deployments, because previously they were different for each deployment option.
| 350147 | - | Deployment | Resolved a deploy issue where bootstrapping was occurring on the Commerce Shops instance, instead of the intended Commerce Ops instance.
| 346742 | - -## Breaking changes - - | Area | Description | - | --- | --- | - | Obsoleted in XC9.3 | Items in this section have been marked obsolete in XC9.3, and are targeted to be removed in XC9.4.

**Commerce Core:**
- Sitecore.Commerce.Core.MinionBossPolicy(string, string, TimeSpan?) - Use ctor with List listsToWatch parameter instead.
- Sitecore.Commerce.Core.MinionPolicy(string, string, TimeSpan?) - Use ctor with List listsToWatch parameter instead.
- Sitecore.Commerce.Core.MinionPolicy(string, string, List, TimeSpan?, int?, int?) - Use ctor with List listsToWatch parameter instead.
- Sitecore.Commerce.Core.MinionPolicy.ListToWatch - Use MinionPolicy.ListsToWatch instead.

**Catalog plugin:**
- Sitecore.Commerce.Plugin.Catalog.CatalogItems
- Sitecore.Commerce.Plugin.Catalog.GetMappingsForIdFromDbCommand.Process(CommerceContext commerceContext, string environmentName, string sitecoreId) - Use Process(CommerceContext commerceContext, string deterministicId) instead.
- Sitecore.Commerce.Plugin.Catalog.BaseFormatComposerViewPropertyBlock.FormatSellableItem(SellableItem item, CommercePipelineExecutionContext context) - Use FormatCatalogItemComposerViews(CatalogItemBase item, CommercePipelineExecutionContext context) instead
- Sitecore.Commerce.Plugin.Catalog.GetSellableItemsCommand - Consider using the Sitecore.Commerce.Core.IFindEntitiesInListPipeline to load a list of sellable items.
- Sitecore.Commerce.Plugin.Catalog.GetSellableItemsArgument() - Use GetSellableItemsArgument(IList) instead.

**Inventory plugin:**
- Sitecore.Commerce.Plugin.Inventory.GetInventoryCatalogPipeline
- Sitecore.Commerce.Plugin.Inventory.GetInventorySkuPipeline
- Sitecore.Commerce.Plugin.Inventory.GetInventoryItem
- Sitecore.Commerce.Plugin.Inventory.GetInventoryInformationPipeline
- Sitecore.Commerce.Plugin.Inventory.PopulateInventoryItemBlock
- Sitecore.Commerce.Plugin.Inventory.LoadItemInventoryItemsBlock
- Sitecore.Commerce.Plugin.Inventory.PopulateLineItemsInventoryBlock
- Sitecore.Commerce.Plugin.Inventory.LoadInventoryItemBlock
- Sitecore.Commerce.Plugin.Inventory.GetCartLinesInventory
- Sitecore.Commerce.Plugin.Inventory.PopulateInventoryItemAllocationBlock
- Sitecore.Commerce.Plugin.Inventory.GetEditInventoryInformationViewBlock

**Other plugins:**
- Sitecore.Commerce.Plugin.Coupons.PersistCouponBlock - Use PrepArgumentToPersistEntityBlock, IPersistEntityPipeline and PostPersistEntityBlock.
- Sitecore.Commerce.Plugin.Coupons.PersistPrivateCouponGroupBlock - Use PrepArgumentToPersistEntityBlock, IPersistEntityPipeline and PostPersistEntityBlock.
- Sitecore.Commerce.Plugin.Orders.PersistOrderBlock - Use PrepArgumentToPersistEntityBlock, IPersistEntityPipeline and PostPersistEntityBlock.
- Sitecore.Commerce.Plugin.Carts.PersistCartBlock - Use PrepArgumentToPersistEntityBlock, IPersistEntityPipeline and PostPersistEntityBlock.
- Sitecore.Commerce.Plugin.Search.Solr.SolrContextCommand.DeleteDocuments(string name, CommerceContext context) - Use DeleteDocuments(string, string, CommerceContext) instead.
- Sitecore.Commerce.Plugin.Search.SearchScopePolicy(string, string, bool, bool, bool, string, string, string, string, string, List) - Use ctor with List fullListNames parameter instead.
- Sitecore.Commerce.Plugin.Search.SearchScopePolicy.FullListName - Use SearchScopePolicy.FullListNames instead.
- Sitecore.Commerce.EntityViews.GetListViewBlock - Method GetEntities is obsolete. Use GetEntities instead.

**Commerce Engine Connect Search** - these items are no longer used because indexing of catalog items is now performed by the Commerce Engine:
- Sitecore.Commerce.Engine.Connect.Search.ComputedFields.CatalogEntityIdField
- Sitecore.Commerce.Engine.Connect.Search.ComputedFields.CommerceAncestorIdsField
- Sitecore.Commerce.Engine.Connect.Search.ComputedFields.CommerceHasChildrenField
- Sitecore.Commerce.Engine.Connect.Search.ComputedFields.CommerceSearchItemTypeField
- Sitecore.Commerce.Engine.Connect.Search.ComputedFields.ExcludeFromWebsiteSearchResultsField
- Sitecore.Commerce.Engine.Connect.Search.Crawlers.AllCatalogItemsCrawler
- Sitecore.Commerce.Engine.Connect.Search.Strategies.CatalogsIntervalAsynchronousStrategy
- Sitecore.Commerce.Engine.Connect.Search.Strategies.CatalogSystemIntervalAsynchronousStrategyBase
- Sitecore.Commerce.Engine.Connect.Search.Strategies.CategoriesIntervalAsynchronousStrategy
- Sitecore.Commerce.Engine.Connect.Search.Strategies.SellableItemsIntervalAsynchronousStrategy
- Sitecore.Commerce.Engine.Connect.Search.IndexUtility
- Sitecore.Commerce.Engine.Connect.Search.Strategies.CommerceIntervalAsynchronousStrategy - Property: ItemsToTake. The batch size can now be specified through a minion policy.

**Commerce Engine Connect Data Provider:**
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.MappingEntries - Use MappingsByDeterministicId instead.
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.Bundles - Use MappingsByDeterministicId instead.
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.MappingEntriesLastUpdatedUtc - Use CheckMappings() instead.
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.UpdateMappingEntries - Use CheckMappings() instead.
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.GetCatalogName - Use GetCatalogMappingEntry(ID deterministicId) instead.
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.GetCatalogEntity - Use GetCatalogEntity(MappingEntry childEntry, int? version = null) instead.
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.SetParentId - Use GetMappingEntry(string Id) instead.
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.GetSitecoreIdForDeterministicId(string deterministicId) - Use GetMappingEntry(string Id) instead.
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.GetPathIdsForSitecoreId(string sitecoreId, bool includeVariations = true) - Use GetDeterministicIdsForSitecoreId(string sitecoreId, bool includeVariations = true) instead.
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.GetPathIdsForSitecoreId(string sitecoreId, string parentId) - Use GetDeterministicIdForParentId(string sitecoreId, string parentId) instead.
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.GetCatalogItemDeterministicIds - Use GetMappingEntry(string Id) instead.
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.GetSitecoreIdFromMappings- Use GetMappingEntry(string Id) instead.
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.GetEntityIdFromMappings - Use GetMappingEntry(string Id) instead.
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.GetItemDefinition- Use GetItemDefinition(Database database, MappingEntry mappingEntry, string catalogName, bool isVariant = false) instead.
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.GetListItemEntities - Use GetListItems(string listName, string typeName, int take) instead.
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.GetListItemSitecoreIds - Use GetListItems(string listName, string typeName, int take) instead.
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.GetListItems(string sitecoreId, string listName, string typeName, int take) - Use GetListItems(string listName, string typeName, int take) instead.
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.DoUxAction - This operation is not allowed.

**Commerce Engine Connect pipelines:**
- Sitecore.Commerce.Engine.Connect.Pipelines.Carts.AddCartLine - Method AddCartLine is obsolete. Use AddLineItemToCart instead.
- Sitecore.Commerce.Engine.Connect.Pipelines.Carts.UpdateCartLine - Use UpdateLineItem.
- Sitecore.Commerce.Engine.Connect.Pipelines.Carts.RemoveCartLine - Use RemoveLineItemFromCart. | - | Removed in XC9.3 | Items in this section have been removed in XC9.3.

**Removed Properties:**
- Sitecore.Commerce.Engine.Connect.CommerceEngineConfiguration.CacheMemoryLimitMegabytes \{get; set;\}
- Sitecore.Commerce.Engine.Connect.CommerceEngineConfiguration.PhysicalMemoryLimitPercentage \{get; set;\}
- Sitecore.Commerce.Engine.Connect.CommerceEngineConfiguration.CacheMemoryScaleFactor \{get; set;\}
- Sitecore.Commerce.Engine.Connect.CommerceEngineConfiguration.PollingInterval \{get; set;\}
- Sitecore.Commerce.Engine.Connect.CommerceEngineConfiguration.CacheExpiryInSeconds \{get; set;\}
- Sitecore.Commerce.Engine.Connect.DataProvider.CatalogRepository.DefaultCache \{get; \}
Note: the Types that used these properties have also been removed.

**Removed Types:**
- Sitecore.Commerce.Plugin.Inventory.GetInventoryInformationBlock, Sitecore.Commerce.Plugin.Inventory.dll
- Sitecore.Commerce.Plugin.Inventory.ImportInventoryInformationBlock, Sitecore.Commerce.Plugin.Inventory.dll
- Sitecore.Commerce.Plugin.Inventory.ImportInventoryRelationshipsBlock, Sitecore.Commerce.Plugin.Inventory.dll
- Sitecore.Commerce.Plugin.Inventory.ImportInventorySetsBlock, Sitecore.Commerce.Plugin.Inventory.dll
- Sitecore.Commerce.Plugin.Inventory.ResolveSellableItemInventoryInformationBlock, Sitecore.Commerce.Plugin.Inventory.dll
- Sitecore.Commerce.Plugin.Inventory.StreamInventoryInformationToArchiveBlock, Sitecore.Commerce.Plugin.Inventory.dll
- Sitecore.Commerce.Plugin.Inventory.StreamInventoryItemsToArchiveBaseBlock`3, Sitecore.Commerce.Plugin.Inventory.dll
- Sitecore.Commerce.Plugin.Inventory.StreamInventorySetsToArchiveBlock, Sitecore.Commerce.Plugin.Inventory.dll
- Sitecore.Commerce.Plugin.Inventory.GetInventoryInformationPipeline, Sitecore.Commerce.Plugin.Inventory.dll
- Sitecore.Commerce.Plugin.Inventory.IGetInventoryInformationPipeline, Sitecore.Commerce.Plugin.Inventory.dll
- Sitecore.Commerce.Plugin.Inventory.InventoryItemCachePolicy, Sitecore.Commerce.Plugin.Inventory.dll
- Sitecore.Commerce.Plugin.Orders.ISettleSalesActivityPipeline, Sitecore.Commerce.Plugin.Orders.dll
- Sitecore.Commerce.Plugin.Orders.SettleSalesActivityPipeline, Sitecore.Commerce.Plugin.Orders.dll
- Sitecore.Commerce.Plugin.Orders.SettleSalesActivitiesMinion, Sitecore.Commerce.Plugin.Orders.dll
- Sitecore.Commerce.Plugin.Payments.GetClientTokenBlock, Sitecore.Commerce.Plugin.Payments.dll
- Sitecore.Commerce.Plugin.Payments.RefundCreditCardPaymentBlock, Sitecore.Commerce.Plugin.Payments.dll
- Sitecore.Commerce.Plugin.Payments.KnownViewsPolicy, Sitecore.Commerce.Plugin.Payments.dll
- Sitecore.Commerce.Plugin.Customers.GetCustomersDashboardViewBlock, Sitecore.Commerce.Plugin.Customers.dll
- Sitecore.Commerce.Engine.Connect.DataProvider.Caching.CommerceCache - Use Sitecore.Commerce.Engine.Connect.CachingRepository instead.
- Sitecore.Commerce.Engine.Connect.DataProvider.Caching.CommerceMemoryCache - Use Sitecore.Commerce.Engine.Connect.CachingRepository instead.

**Removed Fields:**
- StreamInventorySetsToArchive in type Sitecore.Commerce.Plugin.Inventory.InventoryConstants, Sitecore.Commerce.Plugin.Inventory.dll
- StreamInventoryInformationToArchive in type Sitecore.Commerce.Plugin.Inventory.InventoryConstants, Sitecore.Commerce.Plugin.Inventory.dll
- StreamBulkInventoryInformationToArchive in type Sitecore.Commerce.Plugin.Inventory.InventoryConstants, Sitecore.Commerce.Plugin.Inventory.dll
- ImportInventorySets in type Sitecore.Commerce.Plugin.Inventory.InventoryConstants, Sitecore.Commerce.Plugin.Inventory.dll
- ImportInventoryInformation in type Sitecore.Commerce.Plugin.Inventory.InventoryConstants, Sitecore.Commerce.Plugin.Inventory.dll
- GetInventoryInformationBlock in type Sitecore.Commerce.Plugin.Inventory.InventoryConstants, Sitecore.Commerce.Plugin.Inventory.dll
- ResolveSellableItemInventoryInformationBlock in type Sitecore.Commerce.Plugin.Inventory.InventoryConstants, Sitecore.Commerce.Plugin.Inventory.dll
- RefundCreditCardPaymentBlock in type Sitecore.Commerce.Plugin.Payments.PaymentsConstants, Sitecore.Commerce.Plugin.Payments.dll
- GetClientTokenBlock in type Sitecore.Commerce.Plugin.Payments.PaymentsConstants, Sitecore.Commerce.Plugin.Payments.dll
- Sitecore.Commerce.Engine.Connect.Search.CommerceSellableItemSearchResultItem.Tags
- Sitecore.Commerce.Engine.Connect.Search.CommerceSellableItemSearchResultItem.ListPrice
- Sitecore.Commerce.Engine.Connect.Search.CommerceSellableItemSearchResultItem.Color
- Sitecore.Commerce.Engine.Connect.Search.CommerceSellableItemSearchResultItem.Size

**Removed Methods - Fulfillment plugin:**
- .ctor(Sitecore.Commerce.Core.GetCountryCommand) in type Sitecore.Commerce.Plugin.Fulfillment.DoActionGetCountryRegionsBlock, Sitecore.Commerce.Plugin.Fulfillment.dll
- .ctor(Sitecore.Commerce.Core.IFindEntityPipeline, Sitecore.Commerce.Core.GetCurrencySetCommand, Sitecore.Commerce.Plugin.Inventory.GetInventoryInformationCommand) in type Sitecore.Commerce.Plugin.Inventory.GetInventoryInformationViewBlock, Sitecore.Commerce.Plugin.Inventory.dll
- .ctor(Sitecore.Commerce.Core.IFindEntitiesInListPipeline, Sitecore.Commerce.Plugin.Catalog.GetCatalogsCommand) in type Sitecore.Commerce.Plugin.Inventory.GetInventorySetCatalogsViewBlock, Sitecore.Commerce.Plugin.Inventory.dll
- .ctor(Sitecore.Commerce.Core.IFindEntitiesInListPipeline) in type Sitecore.Commerce.Plugin.Inventory.GetInventorySetsViewBlock, Sitecore.Commerce.Plugin.Inventory.dll
- .ctor(Sitecore.Commerce.Core.IFindEntityPipeline) in type Sitecore.Commerce.Plugin.Inventory.GetSellableItemInventoryDetailsViewBlock, Sitecore.Commerce.Plugin.Inventory.dll
- .ctor(Sitecore.Commerce.Plugin.Fulfillment.GetFulfillmentMethodsCommand, Sitecore.Commerce.Core.GetCountryCommand, Sitecore.Commerce.Core.ValidatePartyCommand) in type Sitecore.Commerce.Plugin.Fulfillment.DoActionGetFulfillmentMethodsBlock, Sitecore.Commerce.Plugin.Fulfillment.dll
- .ctor(Sitecore.Commerce.Plugin.Fulfillment.GetFulfillmentMethodsCommand, Sitecore.Commerce.Core.ValidatePartyCommand) in type Sitecore.Commerce.Plugin.Fulfillment.GetPhysicalFulfillmentFromViewBlock, Sitecore.Commerce.Plugin.Fulfillment.dll
- .ctor(Sitecore.Commerce.Plugin.Fulfillment.GetFulfillmentMethodsCommand) in type Sitecore.Commerce.Plugin.Fulfillment.SelectDigitalFulfillmentOptionBlock, Sitecore.Commerce.Plugin.Fulfillment.dll

**Removed Methods - Inventory plugin:**
- .ctor(Sitecore.Commerce.Plugin.Catalog.GetSellableItemCommand, Sitecore.Commerce.Plugin.Inventory.GetInventoryInformationCommand) in type Sitecore.Commerce.Plugin.Inventory.InventoryItemStockCountInLocationCondition, Sitecore.Commerce.Plugin.Inventory.dll
- .ctor(Sitecore.Commerce.Plugin.Catalog.GetSellableItemCommand, Sitecore.Commerce.Plugin.Inventory.GetInventoryInformationCommand) in type Sitecore.Commerce.Plugin.Inventory.IsItemInStockCondition, Sitecore.Commerce.Plugin.Inventory.dll
- .ctor(Sitecore.Commerce.Plugin.Catalog.GetSellableItemCommand, Sitecore.Commerce.Plugin.Inventory.GetInventoryInformationCommand) in type Sitecore.Commerce.Plugin.Inventory.IsItemInStockInLocationCondition, Sitecore.Commerce.Plugin.Inventory.dll
- .ctor(Sitecore.Commerce.Plugin.Catalog.GetSellableItemCommand, Sitecore.Commerce.Plugin.Inventory.GetInventoryInformationCommand) in type Sitecore.Commerce.Plugin.Inventory.IsItemOutOfStockCondition, Sitecore.Commerce.Plugin.Inventory.dll
- .ctor(Sitecore.Commerce.Plugin.Catalog.GetSellableItemCommand, Sitecore.Commerce.Plugin.Inventory.GetInventoryInformationCommand) in type Sitecore.Commerce.Plugin.Inventory.IsItemOutOfStockInLocationCondition, Sitecore.Commerce.Plugin.Inventory.dll

**Removed Methods - Preorderable and Backorderable plugins:**
- .ctor(Sitecore.Commerce.Plugin.Catalog.GetSellableItemCommand, Sitecore.Commerce.Plugin.Inventory.GetInventoryInformationCommand) in type Sitecore.Commerce.Plugin.Preorderable.IsItemPreorderableCondition, Sitecore.Commerce.Plugin.Preorderable.dll
- .ctor(Sitecore.Commerce.Plugin.Catalog.GetSellableItemCommand, Sitecore.Commerce.Plugin.Inventory.GetInventoryInformationCommand) in type Sitecore.Commerce.Plugin.Preorderable.IsItemPreorderableInLocationCondition, Sitecore.Commerce.Plugin.Preorderable.dll
- .ctor(Sitecore.Commerce.Plugin.Catalog.GetSellableItemCommand, Sitecore.Commerce.Plugin.Inventory.GetInventoryInformationCommand) in type Sitecore.Commerce.Plugin.Backorderable.IsItemBackorderableCondition, Sitecore.Commerce.Plugin.Backorderable.dll
- .ctor(Sitecore.Commerce.Plugin.Catalog.GetSellableItemCommand, Sitecore.Commerce.Plugin.Inventory.GetInventoryInformationCommand) in type Sitecore.Commerce.Plugin.Backorderable.IsItemBackorderableInLocationCondition, Sitecore.Commerce.Plugin.Backorderable.dll

**Removed Methods - Orders plugin:**
- .ctor(Sitecore.Commerce.Plugin.Catalog.IGetSellableItemPipeline, Sitecore.Commerce.Plugin.Orders.GetOnHoldOrderCartCommand) in type Sitecore.Commerce.Plugin.Orders.GetEntityViewEditLineItemBlock, Sitecore.Commerce.Plugin.Orders.dll
- .ctor(Sitecore.Commerce.Core.IFindEntityPipeline) in type Sitecore.Commerce.Plugin.Orders.ProcessDocumentSearchResultBlock, Sitecore.Commerce.Plugin.Orders.dll
- .ctor(System.String, System.String) in type Sitecore.Commerce.Plugin.Orders.PendingOrdersMinionArgument, Sitecore.Commerce.Plugin.Orders.dll
- System.String get_OrderId() in type Sitecore.Commerce.Plugin.Orders.PendingOrdersMinionArgument, Sitecore.Commerce.Plugin.Orders.dll
- System.Void set_OrderId(System.String) in type Sitecore.Commerce.Plugin.Orders.PendingOrdersMinionArgument, Sitecore.Commerce.Plugin.Orders.dll

**Removed Methods - Payments plugin:**
- .ctor(Sitecore.Commerce.Core.GetCountryCommand, Sitecore.Commerce.Plugin.Payments.GetPaymentOptionsCommand) in type Sitecore.Commerce.Plugin.Payments.DoActionGetCountryRegionsBlock, Sitecore.Commerce.Plugin.Payments.dll
- .ctor(Sitecore.Commerce.Core.GetCountryCommand) in type Sitecore.Commerce.Plugin.Payments.DoActionGetCountryRegionsFederatedBlock, Sitecore.Commerce.Plugin.Payments.dll
- .ctor(Sitecore.Commerce.Core.GetCountryCommand, Sitecore.Commerce.Core.ValidatePartyCommand) in type Sitecore.Commerce.Plugin.Payments.GetFederatedPaymentBlock, Sitecore.Commerce.Plugin.Payments.dll
- .ctor(Sitecore.Commerce.Core.ValidatePartyCommand) in type Sitecore.Commerce.Plugin.Payments.ValidateFederatedPaymentBlock, Sitecore.Commerce.Plugin.Payments.dll

**Removed Methods - Returns plugin:**
- .ctor(System.String, System.Collections.Generic.IList`1``) in type Sitecore.Commerce.Plugin.Returns.OrderRma, Sitecore.Commerce.Plugin.Returns.dll

**Removed Methods - Search:**
- Sitecore.Commerce.Plugin.Search.Azure.QueryDocumentsBlock.ctor(Sitecore.Commerce.Plugin.Search.Azure.AzureContextCommand azureContextCommand) - Use Sitecore.Commerce.Plugin.Search.Azure.QueryDocumentsBlock.ctor()
- Sitecore.Commerce.Plugin.Search.Solr.QueryDocumentsBlock.ctor(Sitecore.Commerce.Plugin.Search.Solr.SolrContextCommand solrContextCommand) - Use Sitecore.Commerce.Plugin.Search.Solr.QueryDocumentsBlock.ctor(Sitecore.Commerce.Plugin.Search.Solr.SolrContextCommand solrContextCommand, Sitecore.Commerce.Plugin.SearchISearchQueryVisitorFactory factory)

**Removed Methods - other:**
- Sitecore.Commerce.Engine.Connect.CommerceEngineConfiguration.ctor(System.String shopsServiceUrl, System.String commerceOpsServiceUrl, System.Int32 commerceRequestTimeout, System.String defaultShopName, System.String defaultShopCurrency, System.String defaultEnvironment, System.String defaultAuthoringDatabase, System.String certificateThumbprint, System.String certificateHeaderName, System.Security.Cryptography.X509Certificates.StoreLocation certificateStoreLocation, System.Security.Cryptography.X509Certificates.StoreName certificateStoreName, System.Boolean useDeterministicFieldIdsForEntities, System.Boolean useDeterministicFieldIdsForComponents, System.String cacheMemoryLimitMegabytes, System.String cacheMemoryScaleFactor, System.String physicalMemoryLimitPercentage, System.String pollingInterval, System.Int32 cacheExpiryInSeconds) - Use instead Sitecore.Commerce.Engine.Connect.CommerceEngineConfiguration.ctor(System.String shopsServiceUrl, System.String commerceOpsServiceUrl, System.Int32 commerceRequestTimeout, System.String defaultShopName, System.String defaultShopCurrency, System.String defaultEnvironment, System.String defaultAuthoringDatabase, System.String certificateThumbprint, System.String certificateHeaderName, System.Security.Cryptography.X509Certificates.StoreLocation certificateStoreLocation, System.Security.Cryptography.X509Certificates.StoreName certificateStoreName, System.Boolean useDeterministicFieldIdsForEntities, System.Boolean useDeterministicFieldIdsForComponents)

**Removed exception:**
- Sitecore.Commerce.Core.Exceptions.CommerceException - Use Sitecore.Commerce.Core.CommerceException instead
| - | Moved in XC9.3 | The following pipelines have been moved to the Catalog plugin, as of XC9.3:
- Sitecore.Commerce.Core.IFindEntityIdsInSitecoreIdListPipeline
- Sitecore.Commerce.Core.IFindSitecoreIdsInListPipeline
- Sitecore.Commerce.Core.IGetCatalogMappingsPipeline
- Sitecore.Commerce.Core.IGetCatalogMappingsForIdPipeline
- Sitecore.Commerce.Core.IGetDeterministicIdsForEntityIdPipeline
| - | Other changes in XC9.3 | - Sitecore.Commerce.Plugin.Catalog.ItemSpecificationsComponent properties including: Weight, Length, Width, Height, SizeOnDisk were changed from type Int64 to Double.

- Sitecore.Commerce.Core.Commands.RunMinionCommand.Process(Sitecore.Commerce.Core.CommerceContext commerceContext, System.String minionFullName, System.String environmentName, System.Collections.Generic.IList`` policies) method return type changed to System.Threading.Tasks.Task``

- Type Sitecore.Commerce.Plugin.Customers.CustomerStoreConnectionException, Sitecore.Commerce.Plugin.Customers.dll no longer derives from Sitecore.Commerce.Core.Exceptions.Comme.rceException, Sitecore.Commerce.Core

**Storefront:**
- The VisistedProductDetailsPage method in CatalogManager (Commerce Foundation layer) now expects the ID of the product from Catalog as a parameter, instead of the item ID that was previously provided.
- Removed the old ProductBundle components (from code, js, scss, items and modification in csproj) - Replaced with the latest "v-next" ProductBundle components.
| - | Re-introduced in XC9.3 | The following fields were prematurely obsoleted in a previous release, so these have been revived in XC9.3:
- Sitecore.Commerce.Engine.Connect.Search.CommerceSellableItemSearchResultItem.Manufacturer
- Sitecore.Commerce.Engine.Connect.Search.CommerceSellableItemSearchResultItem.TypeOfGood
| - -## Known issues - - | Area | Description | TFS no. | - | --- | --- | --- | - | Storefront | On Azure, brand names that contain quotation marks (") are not displayed in the Brand filter facet. | 362758, 373926 | - | Engine | If a circular dependency is introduced in category associations (e.g. Category A is associated to Category B and Category B is associated to Category A), then an exception will occur when the indexing strategy is run. "Error processing block: GetCatalogHierarchyBlock ---> System.Data.SqlClient.SqlException: The statement terminated. The maximum recursion 100 has been exhausted before statement completion." | 374213 | - -## Documentation updates - - | Area | Description | - | --- | --- | - | Storefront | Added a topic on presenting catalog data on the storefront.
[Link to the documentation](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/presenting-catalog-data-on-the-storefront.html) | - | Storefront | Added a topic on specifying the storefront environment.
[Link to the documentation](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/configure-the-storefront-environment.html) | - | Storefront | Added a topic on data flows between Sitecore roles, the marketing automation database and EXM database.
[Link to the documentation](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/commerce-marketing-automation-campaigns-data-flow.html) | - | Storefront | Added a topic on choosing between available renderings for product lists.
[Link to the documentation](https://doc.sitecore.com/developers/93/sitecore-experience-commerce/en/choosing-between-available-renderings-for-product-lists.html) | - | Storefront | Added a topic on choosing between available renderings (overview).
[Link to the documentation](https://doc.sitecore.com/users/93/sitecore-experience-commerce/en/choosing-between-available-renderings.html) | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/index.md deleted file mode 100644 index 3a6036297..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Commerce/index.md +++ /dev/null @@ -1,136 +0,0 @@ ---- -title: "Sitecore Experience Commerce" -description: "Sitecore Experience Commerce is a natively integrated, cloud-enabled software platform that enables brands to fully personalize the end-to-end shopping experience—before, during, and after the transaction. It blends content, commerce, and contextual intelligence in a modern commerce platform built on .NET Core." -origin: https://dev.sitecore.net/Downloads/Sitecore_Commerce.aspx ---- - -There will not be a new version of Sitecore Experience Commerce released with Sitecore Experience Platform 10.4. This means that customers that have Sitecore XC deployed will not be able to upgrade their Sitecore XP solution to 10.4. Sitecore Experience Commerce 10.3 continues to be supported per the [Sitecore Product Support Lifecycle](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB0641167). - -Sitecore OrderCloud, our headless, API-first commerce platform that is part of Sitecore's composable DXP, powers eCommerce, order management, and B2B2C marketplace solutions for Sitecore customers. Those looking to modernize their eCommerce can learn more about how OrderCloud can complement your existing tech stack at sitecore.com/ordercloud and/or OrderCloud.io. - - - -## Sitecore Experience Commerce 10.3 - - -[Sitecore Experience Commerce 10.3](/downloads/Sitecore_Commerce/103/Sitecore_Experience_Commerce_103) - - - - - -## Sitecore Experience Commerce 10.2 - - -[Sitecore Experience Commerce 10.2](/downloads/Sitecore_Commerce/102/Sitecore_Experience_Commerce_102) - - - - - -## Sitecore Experience Commerce 10.1 - - -[Sitecore Experience Commerce 10.1](/downloads/Sitecore_Commerce/101/Sitecore_Experience_Commerce_101) - - - - - -## Sitecore Experience Commerce 10.0 - - -[Sitecore Experience Commerce 10.0](/downloads/Sitecore_Commerce/100/Sitecore_Experience_Commerce_100) - - - - - -## Sitecore Experience Commerce 9.3 - - -[Sitecore Experience Commerce 9.3 Initial Release](/downloads/Sitecore_Commerce/93/Sitecore_Experience_Commerce_93_Initial_Release) - - - - - -## Sitecore Experience Commerce 9.2 - - -[Sitecore Experience Commerce 9.2 Initial Release](/downloads/Sitecore_Commerce/92/Sitecore_Experience_Commerce_92_Initial_Release) - - - - -## Sitecore Experience Commerce 9.1 - - -[Sitecore Experience Commerce 9.1 Initial Release](/downloads/Sitecore_Commerce/91/Sitecore_Experience_Commerce_91_Initial_Release) - - - - - -## Sitecore Experience Commerce 9.0 - - -[Sitecore Experience Commerce 9.0 Update-3](/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update3)\ -[Sitecore Experience Commerce 9.0 Update-2](/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update2)\ -[Sitecore Experience Commerce 9.0 Update-1](/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Update1)\ -[Sitecore Experience Commerce 9.0 Initial Release](/downloads/Sitecore_Commerce/90/Sitecore_Experience_Commerce_90_Initial_Release) - - - - - -## Sitecore Commerce 8.2.1 - - -[Sitecore Commerce 8.2.1 Update-3](/downloads/Sitecore_Commerce/821/Sitecore_Commerce_821_Update3)\ -[Sitecore Commerce 8.2.1 Update-2](/downloads/Sitecore_Commerce/821/Sitecore_Commerce_821_Update2)\ -[Sitecore Commerce 8.2.1 Update-1](/downloads/Sitecore_Commerce/821/Sitecore_Commerce_821_Update1)\ -[Sitecore Commerce 8.2.1 Initial Release](/downloads/Sitecore_Commerce/821/Sitecore_Commerce_821) - - - - - -## Sitecore Commerce 8.2 - - -[Sitecore Commerce 8.2 powered by Microsoft Dynamics](/downloads/Sitecore_Commerce/82/Sitecore_Commerce_82_powered_by_Microsoft_Dynamics)\ -[Sitecore Commerce 8.2 powered by Commerce Server](/downloads/Sitecore_Commerce/82/Sitecore_Commerce_82_powered_by_Commerce_Server)\ -[Sitecore Commerce 8.2 Connect](/downloads/Sitecore_Commerce/82/Sitecore_Commerce_82_Connect)\ -[Commerce Server 11.4](/downloads/Sitecore_Commerce/82/Commerce_Server_114) - - - - - -## Sitecore Commerce 8.1 - - -[Sitecore Commerce 8.1 powered by Microsoft Dynamics](/downloads/Sitecore_Commerce/81/Sitecore_Commerce_81_powered_by_Microsoft_Dynamics_Initial_Release)\ -[Sitecore Commerce 8.1 powered by Commerce Server](/downloads/Sitecore_Commerce/81/Sitecore_Commerce_81_powered_by_CS)\ -[Sitecore Commerce 8.1 Connect](/downloads/Sitecore_Commerce/81/Sitecore_Commerce_81_Connect)\ -[Commerce Server 11.3](/downloads/Sitecore_Commerce/81/Sitecore_Commerce_Server_113) - - - - - -## Sitecore Commerce 8.0 - - -[Sitecore Commerce 8.0 powered by Microsoft Dynamics Update-1](/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Microsoft_Dynamics_Update1)\ -[Sitecore Commerce 8.0 powered by Commerce Server Update-1](/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Commerce_Server_Update1)\ -[Commerce Server 11.2 Update-1](/downloads/Sitecore_Commerce/80/Commerce_Server_112_Update1)\ -[Sitecore Commerce 8.0 powered by Microsoft Dynamics Initial Release](/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Microsoft_Dynamics_Initial_Release)\ -[Sitecore Commerce 8.0 powered by Commerce Server Initial Release](/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_powered_by_Commerce_Server_Initial_Release)\ -[Commerce Server 11.2 Initial Release](/downloads/Sitecore_Commerce/80/Commerce_Server_112_Initial_Release)\ -[Sitecore Commerce 8.0 Connect](/downloads/Sitecore_Commerce/80/Sitecore_Commerce_80_Connect) - - - -For Sitecore Commerce 7.5 and below, please visit the [Sitecore Developer Network (SDN)](https://archive.doc.sitecore.com/xp/en/sdnarchive/). \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/3x/Sitecore_Connect_for_Content_Hub_310/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/3x/Sitecore_Connect_for_Content_Hub_310/Release_Notes.md deleted file mode 100644 index 503883515..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/3x/Sitecore_Connect_for_Content_Hub_310/Release_Notes.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_for_Content_Hub/3x/Sitecore_Connect_for_Content_Hub_310/Release_Notes ---- - -**January 2021 – released Sitecore Connect for Content Hub 3.1.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​Support for Sitecore XP 9.1.1 | | | - | Support for Content Hub 3.4 | | | - | You can now use the CMP taxonomy provider to sync taxonomy values from Content Hub as tags with the corresponding items in Sitecore XP. | | 394327 | - | Support for all non-complex field mappings between Content Hub and Sitecore. All the simple field types are synchronized by default. | | 363118 | - | The CMP and DAM connectors are now combined and available as a single package. | | 444447 | - | The relationship mapping between entities in Content Hub is now preserved when they are moved to Sitecore. | | 413904 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/3x/Sitecore_Connect_for_Content_Hub_310/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/3x/Sitecore_Connect_for_Content_Hub_310/index.md deleted file mode 100644 index 97066d033..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/3x/Sitecore_Connect_for_Content_Hub_310/index.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: "Sitecore Connect™ for Content Hub 3.1.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_for_Content_Hub/3x/Sitecore_Connect_for_Content_Hub_310.aspx ---- - -Sitecore Connect™ for Content Hub enables web editors and content/digital marketers: -- To work with content created in Sitecore Content Hub. Content is automatically created and updated when changes are made in Sitecore Content Hub. -- To select assets directly from DAM from within the Sitecore environment. Users can select and Incorporate assets into their web and digital experience creation and delivery. - -Sitecore Connect™ for Content Hub 3.1.0 is compatible with Sitecore XP 9.1.1 and Sitecore Content Hub 3.4. - -See [all available versions here](/downloads/Sitecore_Connect_for_Content_Hub). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ for Content Hub XP 9.1.1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/3x/Sitecore%20Connect%20for%20Content%20Hub%20310/Secure/Sitecore%20Connect%20for%20Content%20Hub%20XP%20for%209.1.1%20v.%203.1.0%20rev.%2000188.zip) | Installation package for Sitecore Connect™ for Content Hub compatible with Sitecore Experience Platform (XP) 9.1.1. | - | [Sitecore Connect™ for Content Hub XM 9.1.1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/3x/Sitecore%20Connect%20for%20Content%20Hub%20310/Secure/Sitecore%20Connect%20for%20Content%20Hub%20XM%20for%209.1.1%20v.%203.1.0%20rev.%2000188.zip) | Installation package for Sitecore Connect™ for Content Hub compatible with Sitecore Experience Platform (XM) 9.1.1. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ for Content Hub XP 9.1.1 WDP Single and Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/3x/Sitecore%20Connect%20for%20Content%20Hub%20310/Secure/Sitecore%20Connect%20for%20Content%20Hub%20XP%20for%209.1.1%20v.%203.1.0%20rev.%2000188.scwdp.zip) | WebDeploy package for Single and Scaled configuration and for CM role in XP configurations for use with Sitecore Experience Platform 9.1.1. | - | [Sitecore Connect™ for Content Hub XM 9.1.1 WDP Single and Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/3x/Sitecore%20Connect%20for%20Content%20Hub%20310/Secure/Sitecore%20Connect%20for%20Content%20Hub%20XM%20for%209.1.1%20v.%203.1.0%20rev.%2000188.scwdp.zip) | WebDeploy package for Single and Scaled configuration and for CM role in XM configurations for use with Sitecore Experience Platform 9.1.1. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Connect_for_Content_Hub/3x/Sitecore_Connect_for_Content_Hub_310/Release_Notes) | Release notes for Sitecore Connect™ for Content Hub. | - | [Installation and Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/3x/Sitecore%20Connect%20for%20Content%20Hub%20310/Secure/Sitecore_Connect_for_Content_Hub_3_1_Installation_Guide-en.pdf) | Installation and configuration guide for Sitecore Connect™ for Content Hub. | - | [User Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/3x/Sitecore%20Connect%20for%20Content%20Hub%20310/Secure/Sitecore_Connect_for_Content_Hub_3_1_user_guide-en.pdf) | User guide for Sitecore Connect™ for Content Hub. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/4x/Sitecore_Connect_for_Content_Hub_400/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/4x/Sitecore_Connect_for_Content_Hub_400/Release_Notes.md deleted file mode 100644 index a826e2817..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/4x/Sitecore_Connect_for_Content_Hub_400/Release_Notes.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_for_Content_Hub/4x/Sitecore_Connect_for_Content_Hub_400/Release_Notes ---- - -**April 2021, released Sitecore Connect for Content Hub 4.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | AD no. | - | --- | --- | --- | - | ​​Support for Sitecore XP 9.3.0, 10.0.0, 10.0.1, and 10.1.0 | | | - | Support for Content Hub 4.0 | | | - | You can now synchronize every type of entity from Content Hub to Sitecore XP. | | 413903 | - | Related Entities mapping - If an entity in Content Hub is linked to other entities, these relationships are now mapped in Sitecore XP during synchronization. | | 413904 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/4x/Sitecore_Connect_for_Content_Hub_400/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/4x/Sitecore_Connect_for_Content_Hub_400/index.md deleted file mode 100644 index 0ea172d5f..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/4x/Sitecore_Connect_for_Content_Hub_400/index.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: "Sitecore Connect™ for Content Hub 4.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_for_Content_Hub/4x/Sitecore_Connect_for_Content_Hub_400 ---- - -Sitecore Connect™ for Content Hub enables web editors and content/digital marketers: -- To work with content created in Sitecore Content Hub. Content is automatically created and updated when changes are made in Sitecore Content Hub. -- To select assets directly from DAM from within the Sitecore environment. Users can select and Incorporate assets into their web and digital experience creation and delivery. - -Sitecore Connect™ for Content Hub 4.0.0 is compatible with Sitecore XP 9.3-10.1 and Sitecore Content Hub 4.0-4.1. - -See [all available versions here](/downloads/Sitecore_Connect_for_Content_Hub). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ for Content Hub XP 10.1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/4x/Sitecore%20Connect%20for%20Content%20Hub%20400/Secure/Sitecore%20Connect%20for%20Content%20Hub%20XP%20for%2010.1%20v.%204.0.0%20rev.%2000229.zip) | Installation package for Sitecore Connect™ for Content Hub compatible with Sitecore Experience Platform (XP) 10.1. | - | [Sitecore Connect™ for Content Hub XM 10.1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/4x/Sitecore%20Connect%20for%20Content%20Hub%20400/Secure/Sitecore%20Connect%20for%20Content%20Hub%20XM%20for%2010.1%20v.%204.0.0%20rev.%2000229.zip) | Installation package for Sitecore Connect™ for Content Hub compatible with Sitecore Experience Platform (XM) 10.1. | - | [Sitecore Connect™ for Content Hub XP 10.0](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/4x/Sitecore%20Connect%20for%20Content%20Hub%20400/Secure/Sitecore%20Connect%20for%20Content%20Hub%20XP%20for%2010.0%20v.%204.0.0%20rev.%2000222.zip) | Installation package for Sitecore Connect™ for Content Hub compatible with Sitecore Experience Platform (XP) 10.0. | - | [Sitecore Connect™ for Content Hub XM 10.0](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/4x/Sitecore%20Connect%20for%20Content%20Hub%20400/Secure/Sitecore%20Connect%20for%20Content%20Hub%20XM%20for%2010.0%20v.%204.0.0%20rev.%2000222.zip) | Installation package for Sitecore Connect™ for Content Hub compatible with Sitecore Experience Platform (XM) 10.0. | - | [Sitecore Connect™ for Content Hub XP 9.3](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/4x/Sitecore%20Connect%20for%20Content%20Hub%20400/Secure/Sitecore%20Connect%20for%20Content%20Hub%20XP%20for%209.3%20v.%204.0.0%20rev.%2000224.zip) | Installation package for Sitecore Connect™ for Content Hub compatible with Sitecore Experience Platform (XP) 9.3. | - | [Sitecore Connect™ for Content Hub XM 9.3](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/4x/Sitecore%20Connect%20for%20Content%20Hub%20400/Secure/Sitecore%20Connect%20for%20Content%20Hub%20XM%20for%209.3%20v.%204.0.0%20rev.%2000224.zip) | Installation package for Sitecore Connect™ for Content Hub compatible with Sitecore Experience Platform (XM) 9.3. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/chub%2F4.0.0.00229.109) | The Sitecore Connect™ for Content Hub Container Deployment Package contains the Docker Compose and Kubernetes specification files used to Sitecore Connect™ for Content Hub in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Connect_for_Content_Hub/4x/Sitecore_Connect_for_Content_Hub_400/Release_Notes) | Release notes for Sitecore Connect™ for Content Hub. | - | [Installation and Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/4x/Sitecore%20Connect%20for%20Content%20Hub%20400/Secure/Sitecore_Connect_for_Content_Hub_4_0_Installation_Guide-en.pdf) | Installation and configuration guide for Sitecore Connect™ for Content Hub. | - | [Container Deployment Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/4x/Sitecore%20Connect%20for%20Content%20Hub%20400/Secure/Sitecore_Connect_for_Content_Hub_4_0_Container_Deployment_Guide-en.pdf) | This guide describes how to do the Sitecore Connect™ for Content Hub for Docker Compose and Kubernetes deployment. | - | [User Guide](https://doc.sitecore.com/developers/connect-for-ch/40/connect-for-content-hub/en/sitecore-connect-for-content-hub.html) | User guide for Sitecore Connect™ for Content Hub. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_500/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_500/Release_Notes.md deleted file mode 100644 index 30bfb82c3..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_500/Release_Notes.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_500/Release_Notes ---- - -**February 2022, released Sitecore Connect for Content Hub 5.0.0** - -## Highlights - -- With Sitecore Connect for Content Hub 5.0.0, users are able to install this package on Sitecore XP 9.2, 9.3, 10.0, 10.1, or 10.2 by running the SCCH SIF Installation package with the SCCH WDP package. Users are no longer required to install a specific SCCH version to match a specific version of Sitecore XP. - -## New features/improvements - - | Description | Customer ticket ID (or other) | ADO no. | - | --- | --- | --- | - | ​​Support for Sitecore XP 10.2, 10.1, 10.0, 9.3 and 9.2. | - | - | - | Support for Content Hub 4.1.x, 4.0.x and 3.4.x. | - | - | - | Support for Items as Resources. | - | - | - | Support for Consumption Tracking. | - | 455423 | - | In the Content Editor, you are now informed that a media item is synchronized with Content Hub. | - | 455427 | - | The DAM asset attributes are now configurable. | - | 468115 | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | ADO no. | - | --- | --- | --- | - | If you insert a PDF asset into Rich Text Editor from DAM, any highlighted text is replaced with "Download" when you insert a link to the asset. | CS0271176 | 499112 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_500/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_500/index.md deleted file mode 100644 index 0a53df4aa..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_500/index.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: "Sitecore Connect™ for Content Hub 5.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_500 ---- - -Sitecore Connect™ for Content Hub enables web editors and content/digital marketers: -- To work with content created in Sitecore Content Hub. Content is automatically created and updated when changes are made in Sitecore Content Hub. -- To select assets directly from DAM from within the Sitecore environment. Users can select and Incorporate assets into their web and digital experience creation and delivery. - -Sitecore Connect™ for Content Hub 5.0.0 is compatible with Sitecore XP 9.2-10.2 and Sitecore Content Hub 3.4-4.2. - -See [all available versions here](/downloads/Sitecore_Connect_for_Content_Hub). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ for Content Hub SIF Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/5x/Sitecore%20Connect%20for%20Content%20Hub%20500/Secure/SIF%20Installation%20Scripts%20For%20Sitecore%20Connector%20Content%20Hub%205.0.0%20rev.%2000328.zip) | SIF Installation Package for Sitecore Connect for Content Hub compatible with Sitecore Experience Platform (XM/XP). | - | [Sitecore Connect™ for Content Hub WDP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/5x/Sitecore%20Connect%20for%20Content%20Hub%20500/Secure/Sitecore.Connector.ContentHub.WDP.5.0.0-r00328.4145.scwdp.zip) | WDP Installation Package for Sitecore Connect for Content Hub compatible with Sitecore Experience Platform (XM/XP). | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/chub%2F5.0.0.00328.598) | The Sitecore Connect™ for Content Hub Container Deployment Package contains the Docker Compose and Kubernetes specification files used to Sitecore Connect™ for Content Hub in development and production container environments | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update resources for Sitecore Connect™ for Content Hub](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Update resources you need to upgrade from Sitecore Connect™ for Content Hub 3.1.1 and 4.0.0 and Sitecore Connect™ for Sitecore CMP 1.0.0 to 3.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_500/Release_Notes) | Release notes for Sitecore Connect™ for Content Hub. | - | [Installation Guide](https://doc.sitecore.com/xp/en/developers/connect-for-ch/50/connect-for-content-hub/install-sitecore-connect-for-content-hub-on-prem.html) | Installation and configuration guide for Sitecore Connect™ for Content Hub. | - | [Installation Guide for PaaS](https://doc.sitecore.com/xp/en/developers/connect-for-ch/50/connect-for-content-hub/installing-sitecore-connect-for-content-hub-on-paas.html) | This guide describes how to deploy Sitecore Connect for Content Hub™ in a Sitecore Azure Cloud Service (PaaS) environment. | - | [Container Deployment Guide](https://doc.sitecore.com/xp/en/developers/connect-for-ch/50/connect-for-content-hub/installing-sitecore-connect-for-content-hub-on-containers.html) | This guide describes how to do the Sitecore Connect™ for Content Hub for Docker Compose and Kubernetes deployment. | - | [User Guide](https://doc.sitecore.com/developers/connect-for-ch/50/connect-for-content-hub/en/sitecore-connect-for-content-hub.html) | User guide for Sitecore Connect™ for Content Hub. | - -## Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/5x/Sitecore%20Connect%20for%20Content%20Hub%20500/Secure/Sitecore%20Connect%20for%20Content%20Hub%205.0.0%20rev.%2000328%20(da-DK).zip) | Sitecore Connect™ for Content Hub Client Translations file Danish (da-DK). | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/5x/Sitecore%20Connect%20for%20Content%20Hub%20500/Secure/Sitecore%20Connect%20for%20Content%20Hub%205.0.0%20rev.%2000328%20(de-DE).zip) | Sitecore Connect™ for Content Hub Client Translations file German (de-DE). | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/5x/Sitecore%20Connect%20for%20Content%20Hub%20500/Secure/Sitecore%20Connect%20for%20Content%20Hub%205.0.0%20rev.%2000328%20(ja-JP).zip) | Sitecore Connect™ for Content Hub Client Translations file Japanese (ja-JP). | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/5x/Sitecore%20Connect%20for%20Content%20Hub%20500/Secure/Sitecore%20Connect%20for%20Content%20Hub%205.0.0%20rev.%2000328%20(zh-CN).zip) | Sitecore Connect™ for Content Hub Client Translations file Chinese (zh-CN). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_510/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_510/Release_Notes.md deleted file mode 100644 index 4374efca5..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_510/Release_Notes.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_510/Release_Notes ---- - -**January 2023, released Sitecore Connect for Content Hub 5.1.0** - -## Highlights - -- With Sitecore Connect for Content Hub 5.1.0, users are able to enable and disable DAM/CMP individually by using the `cmpEnabled:define` or `damEnabled:define` keys in `web.config`. - -## New features/improvements - - | Description | Customer ticket ID (or other) | ADO no. | - | --- | --- | --- | - | ​​Support for Sitecore XP 10.3, 10.2, 10.1 and 10.0. | - | - | - | Support for Content Hub 4.2.x, 4.1.x, 4.0.x and 3.4.x. | - | - | - | The Enable and Disable DAM/CMP feature is migrated to XP. | - | 552867 | - | You can now insert a DAM link to the [general link field](https://doc.sitecore.com/xp/en/developers/connect-for-ch/51/connect-for-content-hub/manage-public-links-to-a-dam-asset.html). | - | 466000 | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | ADO no. | - | --- | --- | --- | - | An `Empty Sitecore Attribute Mapping Field on Item ...` error occurs when retrieving an image from Content Hub while the context language is Japanese. | CS0290011 | 526057 | - | The Master database is hard coded in the `GetLabels` method. | CS0292470,CS0294593,CS0320887 | 527248 | - | If a specified property is not a string, the `Item Name Property` field throws an `InvalidCastException` error. | CS0326734 | 553963 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_510/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_510/index.md deleted file mode 100644 index a344a1669..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_510/index.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: "Sitecore Connect™ for Content Hub 5.1.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_510 ---- - -Sitecore Connect™ for Content Hub enables web editors and content/digital marketers: -- To work with content created in Sitecore Content Hub. Content is automatically created and updated when changes are made in Sitecore Content Hub. -- To select assets directly from DAM from within the Sitecore environment. Users can select and Incorporate assets into their web and digital experience creation and delivery. - -Sitecore Connect™ for Content Hub 5.1.0 is compatible with Sitecore XP 10.0-10.3 and Sitecore Content Hub 4.0-4.2. - -See [all available versions here](/downloads/Sitecore_Connect_for_Content_Hub). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ for Content Hub SIF Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/5x/Sitecore%20Connect%20for%20Content%20Hub%20510/Secure/SIF%20Installation%20Scripts%20For%20Sitecore%20Connector%20Content%20Hub%205.1.26%20rev.%2000372.zip) | SIF Installation Package for Sitecore Connect for Content Hub compatible with Sitecore Experience Platform (XM/XP). | - | [Sitecore Connect™ for Content Hub WDP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/5x/Sitecore%20Connect%20for%20Content%20Hub%20510/Secure/Sitecore.Connector.ContentHub.WDP.5.1.26-r00372.4955.scwdp.zip) | WDP Installation Package for Sitecore Connect for Content Hub compatible with Sitecore Experience Platform (XM/XP). | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/chub%2F5.1.26.00372.1145) | The Sitecore Connect™ for Content Hub Container Deployment Package contains the Docker Compose and Kubernetes specification files used to Sitecore Connect™ for Content Hub in development and production container environments | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update resources for Sitecore Connect™ for Content Hub](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Update resources you need to upgrade from Sitecore Connect™ for Content Hub 3.1.1 and 4.0.0 and Sitecore Connect™ for Sitecore CMP 1.0.0 to 3.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_510/Release_Notes) | Release notes for Sitecore Connect™ for Content Hub. | - | [Installation Guide](https://doc.sitecore.com/xp/en/developers/connect-for-ch/51/connect-for-content-hub/install-sitecore-connect-for-content-hub-on-prem.html) | Installation and configuration guide for Sitecore Connect™ for Content Hub. | - | [Installation Guide for PaaS](https://doc.sitecore.com/xp/en/developers/connect-for-ch/51/connect-for-content-hub/installing-sitecore-connect-for-content-hub-on-paas.html) | This guide describes how to deploy Sitecore Connect for Content Hub™ in a Sitecore Azure Cloud Service (PaaS) environment. | - | [Container Deployment Guide](https://doc.sitecore.com/xp/en/developers/connect-for-ch/51/connect-for-content-hub/installing-sitecore-connect-for-content-hub-on-containers.html) | This guide describes how to do the Sitecore Connect™ for Content Hub for Docker Compose and Kubernetes deployment. | - | [User Guide](https://doc.sitecore.com/xp/en/developers/connect-for-ch/51/connect-for-content-hub/index-en.html) | User guide for Sitecore Connect™ for Content Hub. | - -## Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/5x/Sitecore%20Connect%20for%20Content%20Hub%20510/Secure/Sitecore%20Connect%20for%20Content%20Hub%205.1.26%20rev.%2000372%20(da-DK).zip) | Sitecore Connect™ for Content Hub Client Translations file Danish (da-DK). | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/5x/Sitecore%20Connect%20for%20Content%20Hub%20510/Secure/Sitecore%20Connect%20for%20Content%20Hub%205.1.26%20rev.%2000372%20(de-DE).zip) | Sitecore Connect™ for Content Hub Client Translations file German (de-DE). | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/5x/Sitecore%20Connect%20for%20Content%20Hub%20510/Secure/Sitecore%20Connect%20for%20Content%20Hub%205.1.26%20rev.%2000372%20(ja-JP).zip) | Sitecore Connect™ for Content Hub Client Translations file Japanese (ja-JP). | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/5x/Sitecore%20Connect%20for%20Content%20Hub%20510/Secure/Sitecore%20Connect%20for%20Content%20Hub%205.1.26%20rev.%2000372%20(zh-CN).zip) | Sitecore Connect™ for Content Hub Client Translations file Chinese (zh-CN). | diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_520/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_520/Release_Notes.md deleted file mode 100644 index d13a2fecb..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_520/Release_Notes.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: "Release Notes" -description: "" ---- - -**May 2024, released Sitecore Connect for Content Hub 5.2.0** - -## New features/improvements - | Description | ADO no. | - | --- | --- | - | ​​Added support for Sitecore XP. 10.4. | | - | (DAM) Added SXA query resolver. | 567514 | - | (DAM) Added multivalue support to DAM attribute Mapping. | 573216 | - | (DAM) Added DAM attribute mapping for Rich Text Editor. | 533266 | - | (DAM) Added Image field Batch Sync for the DAM connector in Sitecore Connect for Content Hub. | 506972 | - | (DAM) Added support of Content Hub transformations to public links. | 518659 | - | (DAM) Added "Browse Sitecore DAM" link for File field type. | 579093 | - | (DAM) Added General Link Batch Sync for the DAM connector. | 597104 | - | (DAM) Add the “Insert from Sitecore DAM” command to all Rich Text profiles by default. | 595648 | - | (DAM) Added new attributes dam-id in the XML value. | 588808 | - | (DAM) Allow copy paste public url to image field and generate XML. | 612067 | - | (DAM) Changed Image field thumbnail source to public link url for image and video type. | 612067 | - | (DAM) Included custom attributes when using the html.Sitecore().Field() helper. | 531252 | - | (DAM) Added isRendering option to include/exclude attribute for rendering. | 531252 | - | (CMP) Added Self Reference role option. | 554476 | - | (CMP) Enabled StringPropertyValueConverter to handle string array. | 547074 | - | (CMP) Added Reflect entity deletion in Content Hub to Sitecore XP through connector. | 573637 | - | (CMP) Added HubOut disable when the CMP.ServiceBusEntityPathOut connection string is empty. | 592312 | - | (CMP) Migrated to Azure.Messaging.ServiceBus. | 593444 | - | (CMP) Added Azure Service Bus Client Reauthentication when refresh token expire (due to Content Hub instance restart). | 609679, 611389, 613195 | - | (CMP) Updated Content Variants used as Variants trigger Localization behaviour. | 557754 | - -## Resolved issues - | Description | ADO no. | - | --- | --- | - | (DAM) Incorrect description of the DAM_ContentHub environment variable. | 532114 | - | (DAM) Exception due to multilingual field when inserting asset into image field. | 492001 | - | (DAM) Videos and PDFs not rendered in GraphQL responses. | 586455 | - | (CMP) Exception when mapping a multi-language fields on product entity. | 465914 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_520/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_520/index.md deleted file mode 100644 index f456e76df..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_520/index.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -title: "Sitecore Connect™ for Content Hub 5.2.0" -description: "" ---- - - - - July 24, 2024: published ltsc2019 (a.ka. 1809) container images to Sitecore Container Registry (SCR). - - -Sitecore Connect™ for Content Hub enables web editors and content/digital marketers: -- To work with content created in Sitecore Content Hub. Content is automatically created and updated when changes are made in Sitecore Content Hub. -- To select assets directly from DAM from within the Sitecore environment. Users can select and Incorporate assets into their web and digital experience creation and delivery. - -Sitecore Connect™ for Content Hub 5.2.0 is compatible with Sitecore XP 10.0-10.4 and Sitecore Content Hub 4.0-4.2.\ -See [all available versions here](/downloads/Sitecore_Connect_for_Content_Hub). - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ for Content Hub SIF Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/5x/Sitecore%20Connect%20for%20Content%20Hub%20520/SIF%20Installation%20Scripts%20For%20Sitecore%20Connector%20Content%20Hub%205.2.96%20rev.%2000458.zip) | SIF Installation Package for Sitecore Connect for Content Hub compatible with Sitecore Experience Platform. | - | [Sitecore Connect™ for Content Hub WDP Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/5x/Sitecore%20Connect%20for%20Content%20Hub%20520/Sitecore.Connector.ContentHub.WDP.5.2.96-r00458.5768.scwdp.zip) | WDP Installation Package for Sitecore Connect for Content Hub compatible with Sitecore Experience Platform. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/chub%2F5.2.96.00458.1318) | The Sitecore Connect™ for Content Hub Container Deployment Package contains the Docker Compose and Kubernetes specification files used to Sitecore Connect™ for Content Hub in development and production container environments | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Upgrades - - | Resource | Description | - | --- | --- | - | [Update resources for Sitecore Connect™ for Content Hub](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Update resources to upgrade from Sitecore Connect™ for Content Hub 3.1.1 and 4.0.0 and Sitecore Connect™ for Sitecore CMP 1.0.0 to 3.0.0. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_520/Release_Notes) | Release notes for Sitecore Connect™ for Content Hub. | - | [Installation Guide](https://doc.sitecore.com/xp/en/developers/connect-for-ch/51/connect-for-content-hub/install-sitecore-connect-for-content-hub-on-prem.html) | **Updated document for 5.2 is to be completed!** Installation and configuration guide for Sitecore Connect™ for Content Hub. | - | [Installation Guide for PaaS](https://doc.sitecore.com/xp/en/developers/connect-for-ch/51/connect-for-content-hub/installing-sitecore-connect-for-content-hub-on-paas.html) | **Updated document for 5.2 is to be completed!** This guide describes how to deploy Sitecore Connect for Content Hub™ in a Sitecore Azure Cloud Service (PaaS) environment. | - | [Container Deployment Guide](https://doc.sitecore.com/xp/en/developers/connect-for-ch/51/connect-for-content-hub/installing-sitecore-connect-for-content-hub-on-containers.html) | **Updated document for 5.2 is to be completed!** This guide describes how to do the Sitecore Connect™ for Content Hub for Docker Compose and Kubernetes deployment. | - | [User Guide](https://doc.sitecore.com/xp/en/developers/connect-for-ch/51/connect-for-content-hub/index-en.html) | **Updated document for 5.2 is to be completed!** User guide for Sitecore Connect™ for Content Hub. | - -## Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/5x/Sitecore%20Connect%20for%20Content%20Hub%20520/Sitecore%20Connect%20for%20Content%20Hub%205.2.96%20rev.%2000458%20(da-DK).zip) | Sitecore Connect™ for Content Hub Client Translations file Danish (da-DK). | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/5x/Sitecore%20Connect%20for%20Content%20Hub%20520/Sitecore%20Connect%20for%20Content%20Hub%205.2.96%20rev.%2000458%20(de-DE).zip) | Sitecore Connect™ for Content Hub Client Translations file German (de-DE). | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/5x/Sitecore%20Connect%20for%20Content%20Hub%20520/Sitecore%20Connect%20for%20Content%20Hub%205.2.96%20rev.%2000458%20(ja-JP).zip) | Sitecore Connect™ for Content Hub Client Translations file Japanese (ja-JP). | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Content%20Hub/5x/Sitecore%20Connect%20for%20Content%20Hub%20520/Sitecore%20Connect%20for%20Content%20Hub%205.2.96%20rev.%2000458%20(zh-CN).zip) | Sitecore Connect™ for Content Hub Client Translations file Chinese (zh-CN). | diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/index.md deleted file mode 100644 index ce1b03f32..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Content_Hub/index.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -title: "Sitecore Connect™ for Content Hub" -description: "Sitecore Connect™ for Content Hub synchronizes data between SXP and Content Hub. It gives web editors and content/digital marketers the ability to work with content created in Sitecore Content Hub. Content is automatically created and updated when changes are made in Sitecore Content Hub. Users also have the ability to select assets directly from DAM from within the Sitecore environment. Users can select and Incorporate assets into their web and digital experience creation and delivery." -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_for_Content_Hub.aspx ---- - - - -## Sitecore Connect™ for Content Hub 5.x - - -[Sitecore Connect™ for Content Hub 5.2.0](/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_520)\ -[Sitecore Connect™ for Content Hub 5.1.0](/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_510)\ -[Sitecore Connect™ for Content Hub 5.0.0](/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_500) - - - - - -## Sitecore Connect™ for Content Hub 4.x - - -[Sitecore Connect™ for Content Hub 4.0.0](/downloads/Sitecore_Connect_for_Content_Hub/4x/Sitecore_Connect_for_Content_Hub_400) - - - - - -## Sitecore Connect™ for Content Hub 3.x - - -[Sitecore Connect™ for Content Hub 3.1.0](/downloads/Sitecore_Connect_for_Content_Hub/3x/Sitecore_Connect_for_Content_Hub_310) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce/1x/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_100/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce/1x/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_100/Release_Notes.md deleted file mode 100644 index 038765a83..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce/1x/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_100/Release_Notes.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce/1x/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_100/Release_Notes ---- - -**January 2022 – released Sitecore Connect™ for Microsoft Dynamics 365 Commerce to Content Hub 1.0.0** - -## Highlights - -Sitecore Connect™ for Microsoft Dynamics 365 Commerce to Content Hub 1.0.0 includes: - -- Products that are created, updated, and removed in Microsoft Dynamics 365 Commerce are synchronized into Content Hub PCM with configurable mapping​. -- Product Masters that are created, updated, and removed in Microsoft Dynamics 365 Commerce are synchronized into Content Hub PCM with configurable mapping.​​​ -- Product Variants that are created, updated, and removed in Microsoft Dynamics 365 Commerce are synchronized into Content Hub PCM with configurable mapping.​​​ -- Products, Product Masters, and Product Variants that are Retired in Microsoft Dynamics 365 Commerce are placed in the `Archived` configurable lifecycle state in Content Hub PCM. -- The Microsoft Dynamics 365 Commerce `Size dimension` is synchronized with Content Hub. -- The Microsoft Dynamics 365 Commerce `Color` dimension is synchronized with Content Hub. -- The Microsoft Dynamics 365 Commerce `Style` dimension is synchronized with Content Hub. -- Catalog synchronization is supported. -- Manual synchronization is supported. -- Translation is supported. -- Product Master category synchronization is supported. -- Product Variant category synchronization is supported. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce/1x/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_100/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce/1x/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_100/index.md deleted file mode 100644 index 59fbf71a8..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce/1x/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_100/index.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Sitecore Connect™ for Microsoft Dynamics 365 Commerce 1.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce/1x/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_100.aspx ---- - -Combine best of breed commerce with best of breed digital asset management (DAM). - -Modern digital experiences that convert rely on a rich base of content to provide support the millions of personalized experiences needed to give each customer the exact right experience at every step of their shopping experience. Anything less means losing to the competition. - -With Sitecore Connect™ for Dynamics 365 Commerce, your full Content Hub content library becomes fully searchable and accessible within the page editing environment of Dynamics 365 Commerce, to quickly and easily build and enrich any aspect of your commerce storefronts, and keep them fresh and impactful over time. - -Easily locate, select, and add brand-approved images, videos and documents from an intelligent global digital asset library, and track the impact of each content element you’re using. Understand specifically what content is really moving the needle on site performance. The Integrated user interface also proactively points out to your commerce and digital teams specifically where new or alternative images and content is available - across your full product line. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ for Microsoft Dynamics 365 Commerce](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20Commerce/1x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20Commerce%20100/Secure/Sitecore%20Connect%20for%20Microsoft%20D365%20Commerce%20-%20Content%20Hub%201.0.0.zip) | Installation package for Sitecore Connect™ for Microsoft Dynamics 365 Commerce to Content Hub 1.0.0 - Compatible with Content Hub 4.0 and 4.1 | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce/1x/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_100/Release_Notes) | Release notes for Sitecore Connect™ for Microsoft Dynamics 365 Commerce to Content Hub. | - | [Installation and Configuration Guide](https://docs.stylelabs.com/contenthub/4.1.x/content/user-documentation/integrate-with-sitecore/sitecore-connect-for-d365-commerce/configure-the-solution/configure-the-solution.html) | Installation and Configuration Guide for Sitecore Connect™ for Microsoft Dynamics 365 Commerce to Content Hub. | - | [User Guide](https://docs.stylelabs.com/contenthub/4.1.x/content/user-documentation/integrate-with-sitecore/sitecore-connect-for-d365-commerce/use-the-solution/use-the-solution.html) | User Guide for Sitecore Connect™ for Microsoft Dynamics 365 Commerce to Content Hub. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_200/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_200/Release_Notes.md deleted file mode 100644 index c6b642c93..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_200/Release_Notes.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_200/Release_Notes ---- - -**April 2022 – released Sitecore Connect™ for Microsoft Dynamics 365 Commerce to Content Hub 2.0.0** - -## Highlights - -Sitecore Connect™ for Microsoft Dynamics 365 Commerce to Content Hub 2.0.0 includes: - -- Content Hub DAM users can now add product gallery images in a dedicated Product Gallery Tab in their PCM product detail pages, where they can also change the default sort order of the product images to be rendered dynamically in the Microsoft Dynamics 365 Commerce Sites solution. -- Enable Microsoft Dynamics 365 Commerce Sites to dynamically render product gallery images from Content Hub DAM directly in the generated product detail pages as an image proxy, through CDN distributed public links. -- Configure the default mapping of the rendering of product image proxies. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_200/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_200/index.md deleted file mode 100644 index b2578117e..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_200/index.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: "Sitecore Connect™ for Microsoft Dynamics 365 Commerce 2.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_200.aspx ---- - -Combine best of breed commerce with best of breed digital asset management (DAM). - -Modern digital experiences that convert rely on a rich base of content to provide support the millions of personalized experiences needed to give each customer the exact right experience at every step of their shopping experience. Anything less means losing to the competition. - -With Sitecore Connect™ for Dynamics 365 Commerce, your full Content Hub content library becomes fully searchable and accessible within the page editing environment of Dynamics 365 Commerce, to quickly and easily build and enrich any aspect of your commerce storefronts, and keep them fresh and impactful over time. - -Easily locate, select, and add brand-approved images, videos and documents from an intelligent global digital asset library, and track the impact of each content element you’re using. Understand specifically what content is really moving the needle on site performance. The Integrated user interface also proactively points out to your commerce and digital teams specifically where new or alternative images and content is available - across your full product line. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ for Microsoft Dynamics 365 Commerce](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20Commerce/2x/Sitecore%20Connect%20for%20Microsoft%20Dynamics%20365%20Commerce%20200/Secure/Sitecore%20Connect%20for%20Microsoft%20D365%20Commerce%20-%20Content%20Hub%202.0.0.zip) | Installation package for Sitecore Connect™ for Microsoft Dynamics 365 Commerce to Content Hub 2.0.0 - Compatible with Content Hub 4.0.11 and above. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce/2x/Sitecore_Connect_for_Microsoft_Dynamics_365_Commerce_200/Release_Notes) | Release notes for Sitecore Connect™ for Microsoft Dynamics 365 Commerce to Content Hub. | - | [Installation and Configuration Guide](https://docs.stylelabs.com/contenthub/4.1.x/content/user-documentation/integrate-with-sitecore/sitecore-connect-for-d365-commerce/configure-the-solution/configure-the-solution.html) | Installation and Configuration Guide for Sitecore Connect™ for Microsoft Dynamics 365 Commerce to Content Hub. | - | [User Guide](https://docs.stylelabs.com/contenthub/4.1.x/content/user-documentation/integrate-with-sitecore/sitecore-connect-for-d365-commerce/use-the-solution/use-the-solution.html) | User Guide for Sitecore Connect™ for Microsoft Dynamics 365 Commerce to Content Hub. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Sitecore_CMP/10/Sitecore_Connect_for_Sitecore_CMP_100/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Sitecore_CMP/10/Sitecore_Connect_for_Sitecore_CMP_100/index.md deleted file mode 100644 index 6347a7c1d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Sitecore_CMP/10/Sitecore_Connect_for_Sitecore_CMP_100/index.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: "Sitecore Connect™ for Sitecore CMP 1.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_for_Sitecore_CMP/10/Sitecore_Connect_for_Sitecore_CMP_100.aspx ---- - -The Sitecore Connect™ for Sitecore CMP gives web editors, content/digital marketers the ability to work with content created in Sitecore Content Hub. Content is automatically created and updated when changes are made in Sitecore Content Hub. - -Sitecore Connect™ for Sitecore CMP version 1.0.0 is compatible with 3.2.x versions of Sitecore CMP. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ CMP for Sitecore XP 9.1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/10/Sitecore%20Connect%20for%20Sitecore%20CMP%20100/Secure/Sitecore%20Connect%20for%20CMP%20XP%201.0.0%20rev.%20190730%20for%209.1.zip) | Installation package for Sitecore Connect™ for Sitecore CMP compatible with Sitecore Experience Platform (XP) 9.1. | - | [Sitecore Connect™ CMP for Sitecore XM 9.1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/10/Sitecore%20Connect%20for%20Sitecore%20CMP%20100/Secure/Sitecore%20Connect%20for%20CMP%20XM%201.0.0%20rev.%20190730%20for%209.1.zip) | Installation package for Sitecore Connect™ for Sitecore CMP compatible with Sitecore Experience Platform (XM) 9.1. | - | [Sitecore Connect™ CMP for Sitecore XP 9.2](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/10/Sitecore%20Connect%20for%20Sitecore%20CMP%20100/Secure/Sitecore%20Connect%20for%20CMP%20XP%201.0.0%20rev.%20190716%20for%209.2.zip) | Installation package for Sitecore Connect™ for Sitecore CMP compatible with Sitecore Experience Platform (XP) 9.2. | - | [Sitecore Connect™ CMP for Sitecore XM 9.2](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/10/Sitecore%20Connect%20for%20Sitecore%20CMP%20100/Secure/Sitecore%20Connect%20for%20CMP%20XM%201.0.0%20rev.%20190716%20for%209.2.zip) | Installation package for Sitecore Connect™ for Sitecore CMP compatible with Sitecore Experience Manager (XM) 9.2. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ CMP for Sitecore XP 9.1 WDP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/10/Sitecore%20Connect%20for%20Sitecore%20CMP%20100/Secure/Sitecore%20Connect%20for%20CMP%20XP%20Single%201.0.0-r00010%20for%209.1.scwdp.zip) | WebDeploy package for XP0 configuration and for CM role in XP configurations for use with Sitecore Experience Platform 9.1. | - | [Sitecore Connect™ CMP for Sitecore XP 9.1 WDP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/10/Sitecore%20Connect%20for%20Sitecore%20CMP%20100/Secure/Sitecore%20Connect%20for%20CMP%20XP%20Scaled%201.0.0-r00010%20for%209.1.scwdp.zip) | WebDeploy package for CD role in XP configurations for use with Sitecore Experience Platform 9.1. | - | [Sitecore Connect™ CMP for Sitecore XM 9.1 WDP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/10/Sitecore%20Connect%20for%20Sitecore%20CMP%20100/Secure/Sitecore%20Connect%20for%20CMP%20XM%20Single%201.0.0-r00010%20for%209.1.scwdp.zip) | WebDeploy package for XP0 configuration and for CM role in XM configurations for use with Sitecore Experience Platform 9.1. | - | [Sitecore Connect™ CMP for Sitecore XM 9.1 WDP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/10/Sitecore%20Connect%20for%20Sitecore%20CMP%20100/Secure/Sitecore%20Connect%20for%20CMP%20XM%20Scaled%201.0.0-r00010%20for%209.1.scwdp.zip) | WebDeploy package for CD role in XM configurations for use with Sitecore Experience Platform 9.1. | - | [Sitecore Connect™ CMP for Sitecore XP 9.2 WDP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/10/Sitecore%20Connect%20for%20Sitecore%20CMP%20100/Secure/Sitecore%20Connect%20for%20CMP%20XP%20Single%201.0.0-r00008%20for%209.2.scwdp.zip) | WebDeploy package for XP0 configuration and for CM role in XP configurations for use with Sitecore Experience Platform 9.2. | - | [Sitecore Connect™ CMP for Sitecore XP 9.2 WDP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/10/Sitecore%20Connect%20for%20Sitecore%20CMP%20100/Secure/Sitecore%20Connect%20for%20CMP%20XP%20Scaled%201.0.0-r00008%20for%209.2.scwdp.zip) | WebDeploy package for CD role in XP configurations for use with Sitecore Experience Platform 9.2. | - | [Sitecore Connect™ CMP for Sitecore XM 9.2 WDP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/10/Sitecore%20Connect%20for%20Sitecore%20CMP%20100/Secure/Sitecore%20Connect%20for%20CMP%20XM%20Single%201.0.0-r00008%20for%209.2.scwdp.zip) | WebDeploy package for XP0 configuration and for CM role in XM configurations for use with Sitecore Experience Platform 9.2. | - | [Sitecore Connect™ CMP for Sitecore XM 9.2 WDP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/10/Sitecore%20Connect%20for%20Sitecore%20CMP%20100/Secure/Sitecore%20Connect%20for%20CMP%20XM%20Scaled%201.0.0-r00008%20for%209.2.scwdp.zip) | WebDeploy package for CD role in XM configurations for use with Sitecore Experience Platform 9.2. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Installation and Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/10/Sitecore%20Connect%20for%20Sitecore%20CMP%20100/Secure/Sitecore-Connect-for-Sitecore-CMP-1.0-installation-and-configuration-manual.pdf) | Installation and configuration guide for Sitecore Connect™ for Sitecore CMP. | - | [Sitecore Connect™ CMP Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/10/Sitecore%20Connect%20for%20Sitecore%20CMP%20100/Secure/Sitecore-Connect-for-Sitecore-CMP-guide.pdf) | Architecture of the Sitecore Connect™ for Sitecore CMP. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Sitecore_CMP/20/Sitecore_Connect_for_Sitecore_CMP_200/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Sitecore_CMP/20/Sitecore_Connect_for_Sitecore_CMP_200/index.md deleted file mode 100644 index f9c4b9a42..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Sitecore_CMP/20/Sitecore_Connect_for_Sitecore_CMP_200/index.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: "Sitecore Connect™ for Sitecore CMP 2.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_for_Sitecore_CMP/20/Sitecore_Connect_for_Sitecore_CMP_200.aspx ---- - -The Sitecore Connect™ for Sitecore CMP gives web editors, content/digital marketers the ability to work with content created in Sitecore Content Hub. Content is automatically created and updated when changes are made in Sitecore Content Hub. - -**Compatibility:** - -Sitecore Connect™ for Sitecore CMP version 2.0.0 is compatible with Sitecore XM/XP 9.1, XM/XP 9.2, XM/XP 9.3 and Sitecore Content Hub 3.3. - -**Changes:** - -With this version the following changes have been implemented: - -- Ability to map fields of different types through field type converters. OOB included field type converters are textual fields (that includes HTML) and date/time. Additional field type converters can be added. -- Config settings are now in configuration file. -- When items are renamed in Content Hub, the items are now also renamed in XP (using the display name field). -- Fixed issue: “Duplicated items are occasionally created when there is a short delay between creation and update of the same entity”. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ CMP for Sitecore XP 9.1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/20/Sitecore%20Connect%20for%20Sitecore%20CMP%20200/Secure/Sitecore%20Connect%20for%20CMP%20XP%202.0.0%20rev.%20200116%20for%209.1.zip) | Installation package for Sitecore Connect™ for Sitecore CMP compatible with Sitecore Experience Platform (XP) 9.1. | - | [Sitecore Connect™ CMP for Sitecore XP 9.2 and 9.3](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/20/Sitecore%20Connect%20for%20Sitecore%20CMP%20200/Secure/Sitecore%20Connect%20for%20CMP%20XP%202.0.0%20rev.%20200116%20for%209.3.zip) | Installation package for Sitecore Connect™ for Sitecore CMP compatible with Sitecore Experience Platform (XP) 9.2 and 9.3. | - | [Sitecore Connect™ CMP for Sitecore XM 9.1 and 9.2](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/20/Sitecore%20Connect%20for%20Sitecore%20CMP%20200/Secure/Sitecore%20Connect%20for%20CMP%20XM%202.0.0%20rev.%20200116%20for%209.1%20and%209.2.zip) | Installation package for Sitecore Connect™ for Sitecore CMP compatible with Sitecore Experience Platform (XM) 9.1 and 9.2. | - | [Sitecore Connect™ CMP for Sitecore XM 9.3](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/20/Sitecore%20Connect%20for%20Sitecore%20CMP%20200/Secure/Sitecore%20Connect%20for%20CMP%20XM%202.0.0%20rev.%20200116%20for%209.3.zip) | Installation package for Sitecore Connect™ for Sitecore CMP compatible with Sitecore Experience Manager (XM) 9.3. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ CMP for Sitecore XP 9.1 WDP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/20/Sitecore%20Connect%20for%20Sitecore%20CMP%20200/Secure/Sitecore%20Connect%20for%20CMP%20XP%20Single%202.0.0-r00039%20for%209.1.scwdp.zip) | WebDeploy package for XP0 configuration and for CM role in XP configurations for use with Sitecore Experience Platform 9.1. | - | [Sitecore Connect™ CMP for Sitecore XP 9.1 WDP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/20/Sitecore%20Connect%20for%20Sitecore%20CMP%20200/Secure/Sitecore%20Connect%20for%20CMP%20XP%20Scaled%202.0.0-r00039%20for%209.1.scwdp.zip) | WebDeploy package for CM role in XP configurations for use with Sitecore Experience Platform 9.1. | - | [Sitecore Connect™ CMP for Sitecore XM 9.1 WDP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/20/Sitecore%20Connect%20for%20Sitecore%20CMP%20200/Secure/Sitecore%20Connect%20for%20CMP%20XM%20Single%202.0.0-r00039%20for%209.1.scwdp.zip) | WebDeploy package for XP0 configuration and for CM role in XM configurations for use with Sitecore Experience Platform 9.1. | - | [Sitecore Connect™ CMP for Sitecore XM 9.1 WDP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/20/Sitecore%20Connect%20for%20Sitecore%20CMP%20200/Secure/Sitecore%20Connect%20for%20CMP%20XM%20Scaled%202.0.0-r00039%20for%209.1.scwdp.zip) | WebDeploy package for CM role in XM configurations for use with Sitecore Experience Platform 9.1. | - | [Sitecore Connect™ CMP for Sitecore XP 9.3 WDP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/20/Sitecore%20Connect%20for%20Sitecore%20CMP%20200/Secure/Sitecore%20Connect%20for%20CMP%20XP%20Single%202.0.0-r00039%20for%209.3.scwdp.zip) | WebDeploy package for XP0 configuration and for CM role in XP configurations for use with Sitecore Experience Platform 9.2 and 9.3. | - | [Sitecore Connect™ CMP for Sitecore XP 9.3 WDP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/20/Sitecore%20Connect%20for%20Sitecore%20CMP%20200/Secure/Sitecore%20Connect%20for%20CMP%20XP%20Scaled%202.0.0-r00039%20for%209.3.scwdp.zip) | WebDeploy package for CM role in XP configurations for use with Sitecore Experience Platform 9.2 and 9.3. | - | [Sitecore Connect™ CMP for Sitecore XM 9.3 WDP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/20/Sitecore%20Connect%20for%20Sitecore%20CMP%20200/Secure/Sitecore%20Connect%20for%20CMP%20XM%20Single%202.0.0-r00039%20for%209.3.scwdp.zip) | WebDeploy package for XP0 configuration and for CM role in XM configurations for use with Sitecore Experience Platform 9.2 and 9.3. | - | [Sitecore Connect™ CMP for Sitecore XM 9.3 WDP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/20/Sitecore%20Connect%20for%20Sitecore%20CMP%20200/Secure/Sitecore%20Connect%20for%20CMP%20XM%20Scaled%202.0.0-r00039%20for%209.3.scwdp.zip) | WebDeploy package for CM role in XM configurations for use with Sitecore Experience Platform 9.2 and 9.3. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Installation and Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/20/Sitecore%20Connect%20for%20Sitecore%20CMP%20200/Secure/Sitecore-Connect-for-Sitecore-CMP-2.0-installation-and-configuration-manual.pdf) | Installation and configuration guide for Sitecore Connect™ for Sitecore CMP. | - | [Sitecore Connect™ CMP Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/20/Sitecore%20Connect%20for%20Sitecore%20CMP%20200/Secure/Sitecore-Connect-for-Sitecore-CMP-2.0-guide.pdf) | Architecture of the Sitecore Connect™ for Sitecore CMP. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Sitecore_CMP/30/Sitecore_Connect_for_Sitecore_CMP_300/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Sitecore_CMP/30/Sitecore_Connect_for_Sitecore_CMP_300/Release_Notes.md deleted file mode 100644 index d7261bfe5..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Sitecore_CMP/30/Sitecore_Connect_for_Sitecore_CMP_300/Release_Notes.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_for_Sitecore_CMP/30/Sitecore_Connect_for_Sitecore_CMP_300/Release_Notes ---- - -**September 2020 – released Sitecore Connect for Sitecore CMP 3.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Support for Sitecore XP 10.0.0, 9.3.0 and 9.2. | | | - | Support for Content Hub 3.4 | | | - | You can now use the CMP Taxonomy provider to sync taxonomy values from Content Hub as tags with the corresponding items in Sitecore. | | 404719 | - | Support for all non-complex field mappings between Content Hub and Sitecore. All the simple field types are synchronized by default. | | 389459 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Sitecore_CMP/30/Sitecore_Connect_for_Sitecore_CMP_300/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Sitecore_CMP/30/Sitecore_Connect_for_Sitecore_CMP_300/index.md deleted file mode 100644 index 1f7db19dc..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Sitecore_CMP/30/Sitecore_Connect_for_Sitecore_CMP_300/index.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: "Sitecore Connect™ for Sitecore CMP 3.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_for_Sitecore_CMP/30/Sitecore_Connect_for_Sitecore_CMP_300 ---- - -The Sitecore Connect™ for Sitecore CMP gives web editors, content/digital marketers the ability to work with content created in Sitecore Content Hub. Content is automatically created and updated when changes are made in Sitecore Content Hub. - -**Compatibility:** - -Sitecore Connect™ for Sitecore CMP version 3.0.0 is compatible with Sitecore XM/XP 9.2, XM/XP 9.3, XM/XP 10.0 and Sitecore Content Hub 3.4. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ CMP for Sitecore XP 10.0](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/30/Sitecore%20Connect%20for%20Sitecore%20CMP%20300/Secure/Sitecore%20Connect%20for%20CMP%20XP%20for%2010.0%20v.%203.0.0%20rev.%2000134.zip) | Installation package for Sitecore Connect™ for Sitecore CMP compatible with Sitecore Experience Platform (XP) 10.0. | - | [Sitecore Connect™ CMP for Sitecore XM 10.0](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/30/Sitecore%20Connect%20for%20Sitecore%20CMP%20300/Secure/Sitecore%20Connect%20for%20CMP%20XM%20for%2010.0%20v.%203.0.0%20rev.%2000134.zip) | Installation package for Sitecore Connect™ for Sitecore CMP compatible with Sitecore Experience Platform (XM) 10.0. | - | [Sitecore Connect™ CMP for Sitecore XP 9.2/9.3](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/30/Sitecore%20Connect%20for%20Sitecore%20CMP%20300/Secure/Sitecore%20Connect%20for%20CMP%20XP%20for%209.2%20-%209.3%20v.%203.0.0%20rev.%2000132.zip) | Installation package for Sitecore Connect™ for Sitecore CMP compatible with Sitecore Experience Platform (XP) 9.2/9.3. | - | [Sitecore Connect™ CMP for Sitecore XM 9.2](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/30/Sitecore%20Connect%20for%20Sitecore%20CMP%20300/Secure/Sitecore%20Connect%20for%20CMP%20XM%20for%209.2%20v.%203.0.0%20rev.%2000132.zip) | Installation package for Sitecore Connect™ for Sitecore CMP compatible with Sitecore Experience Platform (XM) 9.2. | - | [Sitecore Connect™ CMP for Sitecore XM 9.3](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/30/Sitecore%20Connect%20for%20Sitecore%20CMP%20300/Secure/Sitecore%20Connect%20for%20CMP%20XM%20for%209.3%20v.%203.0.0%20rev.%2000132.zip) | Installation package for Sitecore Connect™ for Sitecore CMP compatible with Sitecore Experience Manager (XM) 9.3. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Sitecore Connect™ CMP for Sitecore XP 10.0 WDP Single and Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/30/Sitecore%20Connect%20for%20Sitecore%20CMP%20300/Secure/Sitecore.Connector.CMP.XP10.0.v.3.0.0-r00134.1334.scwdp.zip) | WebDeploy package for Single and Scaled configuration and for CM role in XP configurations for use with Sitecore Experience Platform 10.0. | - | [Sitecore Connect™ CMP for Sitecore XM 10.0 WDP Single and Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/30/Sitecore%20Connect%20for%20Sitecore%20CMP%20300/Secure/Sitecore.Connector.CMP.XM10.0.v.3.0.0-r00134.1334.scwdp.zip) | WebDeploy package for Single and Scaled configuration and for CM role in XM configurations for use with Sitecore Experience Platform 10.0. | - | [Sitecore Connect™ CMP for Sitecore XP 9.2/9.3 WDP Single and Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/30/Sitecore%20Connect%20for%20Sitecore%20CMP%20300/Secure/Sitecore.Connector.CMP.XP9.2-9.3.v.3.0.0-r00132.1325.scwdp.zip) | WebDeploy package for Single and Scaled configuration and for CM role in XP configurations for use with Sitecore Experience Platform 9.2/9.3. | - | [Sitecore Connect™ CMP for Sitecore XM 9.2/9.3 WDP Single and Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/30/Sitecore%20Connect%20for%20Sitecore%20CMP%20300/Secure/Sitecore.Connector.CMP.XM9.2-9.3.v.3.0.0-r00132.1325.scwdp.zip) | WebDeploy package for Single and Scaled configuration and for CM role in XM configurations for use with Sitecore Experience Platform 9.2/9.3. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Connect_for_Sitecore_CMP/30/Sitecore_Connect_for_Sitecore_CMP_300/Release_Notes) | Release notes for Sitecore Connect™ for Sitecore CMP. | - | [Installation and Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20for%20Sitecore%20CMP/30/Sitecore%20Connect%20for%20Sitecore%20CMP%20300/Secure/Sitecore_Connect_for_Sitecore_CMP_3_0_Installation_Guide-en.pdf) | Installation and configuration guide for Sitecore Connect™ for Sitecore CMP. | - | [Sitecore Connect™ CMP Guide](https://doc.sitecore.com/developers/sitecore-cmp/30/sitecore-connect-for-sitecore-cmp/en/index-en.html) | Architecture of the Sitecore Connect™ for Sitecore CMP. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Sitecore_CMP/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Sitecore_CMP/index.md deleted file mode 100644 index 6147798ac..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_for_Sitecore_CMP/index.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: "Sitecore Connect™ for Sitecore CMP" -description: "The Sitecore Connect™ for Sitecore CMP gives web editors, content/digital marketers the ability to work with content created in Sitecore Content Hub. Content is automatically created and updated when changes are made in Sitecore Content Hub." -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_for_Sitecore_CMP.aspx ---- - - - -## Sitecore Connect™ for Sitecore CMP 3.0 - - -[Sitecore Connect™ for Sitecore CMP 3.0.0](/downloads/Sitecore_Connect_for_Sitecore_CMP/30/Sitecore_Connect_for_Sitecore_CMP_300) - - - - - -## Sitecore Connect™ for Sitecore CMP 2.0 - - -[Sitecore Connect™ for Sitecore CMP 2.0.0](/downloads/Sitecore_Connect_for_Sitecore_CMP/20/Sitecore_Connect_for_Sitecore_CMP_200) - - - - - -## Sitecore Connect™ for Sitecore CMP 1.0 - - -[Sitecore Connect™ for Sitecore CMP 1.0.0](/downloads/Sitecore_Connect_for_Sitecore_CMP/10/Sitecore_Connect_for_Sitecore_CMP_100) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_10/Release_Notes__BDE.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_10/Release_Notes__BDE.md deleted file mode 100644 index dc9bcb39b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_10/Release_Notes__BDE.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_10/Release_Notes__BDE ---- - -**September 2019 - released Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange 1.0 (rev. 00238)** - -## Highlights - -Sitecore Connect for Salesforce Managed Cloud 1.0 includes: - -- You can use contact and behavioral data from Sitecore for email personalization and journey orchestration in Salesforce Marketing Cloud. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_10/Release_Notes__CE.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_10/Release_Notes__CE.md deleted file mode 100644 index 6b0eb33ab..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_10/Release_Notes__CE.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_10/Release_Notes__CE ---- - -**June 2018 - released Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange 1.0 (rev. 180608)** - -## New features/improvements - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - | ​​Media | Sitecore media items are available as assets and categories in Salesforce Marketing Cloud. | | 224014 | - | Media | Runtime configuration of Sitecore media item locations that are pushed to Salesforce Marketing Cloud. | | 224014 | - | Media | You can map native Sitecore concepts such as item hierarchy, item names, versions, and language versions to assets and categories in Salesforce Marketing Cloud. | | 224015 | - | Media | We support full manual and scheduled re-sync of all the configured Sitecore media item locations. | | 224019 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_10/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_10/index.md deleted file mode 100644 index 4a63835c8..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_10/index.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: "Sitecore Connect™ for Salesforce Marketing Cloud 1.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_10.aspx ---- - -Sitecore Connect™ unites Sitecore Experience Manager and Sitecore Experience Platform content and data with Salesforce Marketing Cloud. - -To integrate Sitecore Experience Manager or Sitecore Experience Platform with Salesforce Marketing Cloud, you must download and install Sitecore Connect 1.0. No additional connector software is required from Salesforce. This jointly developed connector is available from Sitecore and is the only software that you need to integrate the two platforms. - -**Behavioral Data Exchange** - -- This version is compatible with Sitecore Experience Platform 9.0 Update-1 and 9.0 Update-2. -- The installation is a multi-step process. We provide documentation to assist you with the installation. - -**Content Exchange** - -- This version is compatible with Sitecore Experience Platform 9.0 Initial Release, 9.0 Update-1, 9.0 Update-2, 9.1 Initial Release and 9.1 Update-1. -- The installation is a multi-step process. We provide documentation to assist you with the installation. - -## Behavioral Data Exchange - - | Resource | Description | - | --- | --- | - | [Installation Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2010/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%201.0.0%20rev.%2000238.zip) | Sitecore Installation Package for Content Management or Standalone role. | - | [xConnect Provider for Data Exchange Framework - Installation Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2010/Secure/xConnect%20Provider%20for%20Data%20Exchange%20Framework%202.0.3%20rev.%20190705.zip) | An updated version 2.0.3 of the xConnect Provider Installation Package for Data Exchange Framework that is required for the Behavioral Data Exchange. | - | [xConnect Provider for Data Exchange Framework - Update Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2010/Secure/xConnect%20Provider%20for%20Data%20Exchange%20Framework%202.0.3.update) | Update package to upgrade xConnect Provider for Data Exchange Framework from version 2.0.2 to 2.0.3. | - | [Release Notes](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_10/Release_Notes__BDE) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2010/Secure/Connect_for_SFMC_Behavioral_Data_Exchange_1_0_Inst-en.pdf) | The installation guide for the Sitecore Connect™ for Salesforce Marketing Cloud. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-marketing-cloud/10/sitecore-connect-software-for-salesforce-marketing-cloud/en/introduction.html) | The Sitecore documentation website with Sitecore Connect™ for Salesforce Marketing Cloud documentation. | - -## Content Exchange - - | Resource | Description | - | --- | --- | - | [Installation Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2010/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%201.0.0%20rev.%20180608.zip) | Sitecore Installation Package for Content Management or Standalone role. | - | [Installation WebDeploy Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2010/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%201.0.0%20rev.%20180608.scwdp.zip) | WebDeploy package for Content Management or Standalone role. | - | [Release Notes](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_10/Release_Notes__CE) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2010/Secure/SFMC_Content_Exchange_Install_Guide_1_0-en.pdf) | The installation guide for the Sitecore Connect™ for Salesforce Marketing Cloud. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-marketing-cloud/10/sitecore-connect-software-for-salesforce-marketing-cloud/en/introduction.html) | The Sitecore documentation website with Sitecore Connect™ for Salesforce Marketing Cloud documentation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_20/Release_Notes__BDE.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_20/Release_Notes__BDE.md deleted file mode 100644 index e71d45983..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_20/Release_Notes__BDE.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_20/Release_Notes__BDE ---- - -**June 2019 – released Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange 2.0 (rev. 00241)** - -## Highlights - -Sitecore Connect for Salesforce Managed Cloud 2.0 includes: - -- The ability to leverage contact and behavioral data from Sitecore for email personalization and journey orchestration in Salesforce Marketing Cloud. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_20/Release_Notes__CE.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_20/Release_Notes__CE.md deleted file mode 100644 index f43b0684a..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_20/Release_Notes__CE.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_20/Release_Notes__CE ---- - -**October 2019 - released Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange 2.0 (rev. 00135)** - -## New features/improvements - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - | ​​Miscellaneous | Support for Authentication based on OAuth 2.0 has been added. | 540418 | 344567 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_20/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_20/index.md deleted file mode 100644 index bf7f3b5dd..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_20/index.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: "Sitecore Connect™ for Salesforce Marketing Cloud 2.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_20.aspx ---- - -Sitecore Connect™ unites Sitecore Experience Manager and Sitecore Experience Platform content and data with Salesforce Marketing Cloud. - -To integrate Sitecore Experience Manager or Sitecore Experience Platform with Salesforce Marketing Cloud, you must download and install Sitecore Connect 2.0. No additional connector software is required from Salesforce. This jointly developed connector is available from Sitecore and is the only software that you need to integrate the two platforms. - -**Behavioral Data Exchange** - -- This version is compatible with Sitecore Experience Platform 9.1 Initial Release and 9.1 Update-1. -- The installation is a multi-step process. We provide documentation to assist you with the installation. - -**Content Exchange** - -- This version is compatible with Sitecore Experience Platform 9.0 Initial Release, 9.0 Update-1, 9.0 Update-2, 9.1 Initial Release and 9.1 Update-1. -- The installation is a multi-step process. We provide documentation to assist you with the installation. - -## Behavioral Data Exchange - - | Resource | Description | - | --- | --- | - | [Installation Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2020/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%202.0.0%20rev.%2000241.zip) | Sitecore Installation Package for Content Management or Standalone role. | - | [Installation WebDeploy Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2020/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%202.0.0%20rev.%2000241.scwdp.zip) | WebDeploy package for Content Management or Standalone role. | - | [xConnect Provider for Data Exchange Framework - Installation Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2020/Secure/XConnect%20Provider%20for%20Data%20Exchange%20Framework%202.2.0%20rev.%20190614.zip) | An updated version 2.2.0 of the xConnect Provider Installation Package for Data Exchange Framework that is required for the Behavioral Data Exchange. | - | [xConnect Provider for Data Exchange Framework - Installation WebDeploy Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2020/Secure/XConnect%20Provider%20for%20Data%20Exchange%20Framework%202.2.0%20rev.%20190614.scwdp.zip) | An updated version 2.2.0 of the xConnect Provider Installation WebDeploy Package for Data Exchange Framework that is required for the Behavioral Data Exchange. | - | [Sitecore Connect™ for Salesforce Marketing Cloud - Update Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2020/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20(update%20package)%202.0.0.update) | Update package to upgrade Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange from version 1.0.0 to 2.0.0. | - | [xConnect Provider for Data Exchange Framework - Update Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2020/Secure/xConnect%20Provider%20for%20Data%20Exchange%20Framework%20(update%20package)%202.2.0.update) | Update package to upgrade xConnect Provider for Data Exchange Framework from version 2.1.0 to 2.2.0. | - | [xConnect Provider for Data Exchange Framework - Update Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2020/Secure/xConnect%20Provider%20for%20Data%20Exchange%20Framework%20(update%20package)%202.1.0.update) | Update package to upgrade xConnect Provider for Data Exchange Framework from version 2.0.1 to 2.1.0. | - | [Release Notes](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_20/Release_Notes__BDE) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation and Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2020/Secure/Connect_for_SFMC_Behavioral_Data_Exchange_2_0_Inst-en.pdf) | The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-marketing-cloud/10/sitecore-connect-software-for-salesforce-marketing-cloud/en/introduction.html) | The Sitecore documentation website with Sitecore Connect™ for Salesforce Marketing Cloud documentation. | - -## Content Exchange - - | Resource | Description | - | --- | --- | - | [Installation Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2020/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Content%20Exchange%202.0.0%20rev.%2000135.zip) | Sitecore Installation Package for Content Management or Standalone role. | - | [Update Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2020/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Content%20Exchange%20(update%20package)%202.0.0%20rev.%2000135.update) | Update package to upgrade Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange from version 1.0.0 to 2.0.0. | - | [Release Notes](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_20/Release_Notes__CE) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2020/Secure/SFMC_Content_Exchange_2_0_Install_Guide-en.pdf) | The installation guide for the Sitecore Connect™ for Salesforce Marketing Cloud. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-marketing-cloud/10/sitecore-connect-software-for-salesforce-marketing-cloud/en/introduction.html) | The Sitecore documentation website with Sitecore Connect™ for Salesforce Marketing Cloud documentation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_30/Release_Notes_BDE.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_30/Release_Notes_BDE.md deleted file mode 100644 index 6a55f12fc..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_30/Release_Notes_BDE.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes - BDE" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_30/Release_Notes_BDE ---- - -**October 2019 – released Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange 3.0.0 (rev. 00257)** - -## Highlights - -Sitecore Connect for Salesforce Managed Cloud - Behavioral Data Exchange 3.0.0 includes: - -- ​​Support for Sitecore XP 9.2.0. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_30/Release_Notes_CE.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_30/Release_Notes_CE.md deleted file mode 100644 index ddd969ea9..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_30/Release_Notes_CE.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes - CE" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_30/Release_Notes_CE ---- - -**October 2019 – released Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange 3.0.0 (rev. 00136)** - -## Highlights - -Sitecore Connect for Salesforce Managed Cloud - Content Exchange 3.0.0 includes: - -- ​​Support for Sitecore XP 9.2.0. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_30/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_30/index.md deleted file mode 100644 index 1139403fc..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_30/index.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: "Sitecore Connect™ for Salesforce Marketing Cloud 3.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_30.aspx ---- - -Sitecore Connect™ unites Sitecore Experience Manager and Sitecore Experience Platform content and data with Salesforce Marketing Cloud. - -To integrate Sitecore Experience Manager or Sitecore Experience Platform with Salesforce Marketing Cloud, you must download and install Sitecore Connect 3.0. No additional connector software is required from Salesforce. This jointly developed connector is available from Sitecore and is the only software that you need to integrate the two platforms. - -**Behavioral Data Exchange** - -- This version is compatible with Sitecore Experience Platform 9.2. -- The installation is a multi-step process. We provide documentation to assist you with the installation. - -**Content Exchange** - -- This version is compatible with Sitecore Experience Platform 9.2. -- The installation is a multi-step process. We provide documentation to assist you with the installation. - -## Behavioral Data Exchange - - | Resource | Description | - | --- | --- | - | [Installation Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2030/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%203.0.0%20rev.%2000257.zip) | Sitecore Installation Package for Content Management or Standalone role. | - | [Update Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2030/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%20(update%20package)%203.0.0%20rev.%2000257.update) | Update package to upgrade Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange from version 2.0.0 to 3.0.0. | - | [Release Notes](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_30/Release_Notes_BDE) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation and Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2030/Secure/Connect_for_SFMC_Behavioral_Data_Exchange_3_0_Inst-en.pdf) | The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-marketing-cloud/10/sitecore-connect-software-for-salesforce-marketing-cloud/en/introduction.html) | The Sitecore documentation website with Sitecore Connect™ for Salesforce Marketing Cloud documentation. | - -## Content Exchange - - | Resource | Description | - | --- | --- | - | [Installation Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2030/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Content%20Exchange%203.0.0%20rev.%2000136.zip) | Sitecore Installation Package for Content Management or Standalone role. | - | [Update Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2030/Secure/Sitecore%20Connect%20for%20SFMC%20-%20Content%20Exchange(update%20package)%203.0.0%20rev.%2000136.update) | Update package to upgrade Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange from version 2.0.0 to 3.0.0. | - | [Release Notes](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_30/Release_Notes_CE) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation and Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2030/Secure/SFMC_Content_Exchange_3_0_Install_Guide-en.pdf) | The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-marketing-cloud/10/sitecore-connect-software-for-salesforce-marketing-cloud/en/introduction.html) | The Sitecore documentation website with Sitecore Connect™ for Salesforce Marketing Cloud documentation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_40/Release_Notes_BDE.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_40/Release_Notes_BDE.md deleted file mode 100644 index 532864d9b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_40/Release_Notes_BDE.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes - BDE" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_40/Release_Notes_BDE ---- - -**January 2020 – released Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange 4.0.0 (rev. 00265)** - -## Highlights - -Sitecore Connect for Salesforce Managed Cloud - Behavioral Data Exchange 4.0.0 includes: - -- ​​Support for Sitecore XP 9.3.0. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_40/Release_Notes_CE.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_40/Release_Notes_CE.md deleted file mode 100644 index b94c471db..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_40/Release_Notes_CE.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes - CE" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_40/Release_Notes_CE ---- - -**January 2020 – released Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange 4.0.0 (rev. 00141)** - -## Highlights - -Sitecore Connect for Salesforce Managed Cloud - Content Exchange 4.0.0 includes: - -- ​​Support for Sitecore XP 9.3.0. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_40/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_40/index.md deleted file mode 100644 index e48a5fb9f..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_40/index.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: "Sitecore Connect™ for Salesforce Marketing Cloud 4.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_40.aspx ---- - -Sitecore Connect™ unites Sitecore Experience Manager and Sitecore Experience Platform content and data with Salesforce Marketing Cloud. - -To integrate Sitecore Experience Manager or Sitecore Experience Platform with Salesforce Marketing Cloud, you must download and install Sitecore Connect 4.0. No additional connector software is required from Salesforce. This jointly developed connector is available from Sitecore and is the only software that you need to integrate the two platforms. - -**Behavioral Data Exchange** - -- This version is compatible with Sitecore Experience Platform 9.3. -- The installation is a multi-step process. We provide documentation to assist you with the installation. - -**Content Exchange** - -- This version is compatible with Sitecore Experience Platform 9.3. -- The installation is a multi-step process. We provide documentation to assist you with the installation. - -## Behavioral Data Exchange - - | Resource | Description | - | --- | --- | - | [Installation Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2040/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%204.0.0%20rev.%2000265.zip) | Sitecore Installation Package for Content Management or Standalone role. | - | [Update Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2040/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%20(update%20package)4.0.0%20rev.%2000265.update) | Update package to upgrade Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange from version 3.0.0 to 4.0.0. | - | [Release Notes](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_40/Release_Notes_BDE) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation and Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2040/Secure/Sitecore_Connect_for_SFMC_4_0_Behavioral_Data_Exch-en.pdf) | The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-marketing-cloud/10/sitecore-connect-software-for-salesforce-marketing-cloud/en/sitecore-connect-software-for-salesforce-marketing-cloud.html) | The Sitecore documentation website with Sitecore Connect™ for Salesforce Marketing Cloud documentation. | - -## Content Exchange - - | Resource | Description | - | --- | --- | - | [Installation Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2040/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Content%20Exchange%204.0.0%20rev.%2000141.zip) | Sitecore Installation Package for Content Management or Standalone role. | - | [Update Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2040/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Content%20Exchange%20(update%20package)%204.0.0%20rev.%2000141.update) | Update package to upgrade Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange from version 3.0.0 to 4.0.0. | - | [Release Notes](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_40/Release_Notes_CE) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation and Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2040/Secure/Sitecore_Connect_for_SFMC_4_0_Content_Exchange_Ins-en.pdf) | The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-marketing-cloud/10/sitecore-connect-software-for-salesforce-marketing-cloud/en/sitecore-connect-software-for-salesforce-marketing-cloud.html) | The Sitecore documentation website with Sitecore Connect™ for Salesforce Marketing Cloud documentation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_50/Release_Notes_BDE.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_50/Release_Notes_BDE.md deleted file mode 100644 index 97c8ea89e..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_50/Release_Notes_BDE.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: "Release Notes - BDE" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_50/Release_Notes_BDE ---- - -**August 2020 – released Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange 5.0.0** - -## Highlights - -Sitecore Connect for Salesforce Managed Cloud - Behavioral Data Exchange 5.0.0 includes: - -- ​​Support for Sitecore XP 10.0.0. -- SFMC Integration with Marketing Automation Activity - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Installing SFMC BDE 4.0 breaks the Sitecore Publishing Service. | | 394327 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_50/Release_Notes_CE.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_50/Release_Notes_CE.md deleted file mode 100644 index 508843a97..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_50/Release_Notes_CE.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes - CE" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_50/Release_Notes_CE ---- - -**August 2020 – released Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange 5.0.0** - -## Highlights - -Sitecore Connect for Salesforce Managed Cloud - Content Exchange 5.0.0 includes: - -- ​​Support for Sitecore XP 10.0.0. \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_50/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_50/index.md deleted file mode 100644 index 7ff2bb83c..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_50/index.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: "Sitecore Connect™ for Salesforce Marketing Cloud 5.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_50 ---- - -Sitecore Connect™ for Salesforce Marketing Cloud unites Sitecore Experience Platform content and behavioural data with Salesforce Marketing Cloud.\ -Sitecore Connect™ for Salesforce Marketing Cloud 5.0 is compatible with Sitecore XP 10.0. - -See [all available versions here](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud). - -## Behavioral Data Exchange - - | Resource | Description | - | --- | --- | - | [Behavioral Data Exchange](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2050/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%205.0.0%20rev.%2000294.zip) | Sitecore Installation Package for Content Management or Standalone role. | - | [Behavioral Data Exchange Action Plugin for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2050/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%20Action%20Plugin%20for%20Marketing%20Automation%205.0.0%20rev.%2000294.scwdp.zip) | Provides an ability to trigger BDE Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - | [Behavioral Data Exchange Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2050/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20BDE%20Plugin%20for%20Tenant%20Service%205.0.0%20rev.%2000294.scwdp.zip) | Provides an ability to use Behavioral Data Exchange SFMC pipelines, value accessors and trigger SFMC journey builder API events from Tenant Service site. | - | [Update Package for Behavioral Data Exchange](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2050/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20BDE%20(update%20package)%205.0.0%20rev.%2000294.update) | Update package to upgrade Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange from version 4.0.0 to 5.0.0. | - | [Release Notes](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_50/Release_Notes_BDE) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation and Configuration Guide for BDE Marketing Automation Activity](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2050/Secure/Sitecore_Connect_for_SFMC_5_0_Activity_for_Marketing_Automation_Installatio-en.pdf) | The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Activity for Marketing Automation. | - | [Installation and Configuration Guide for Behavioral Data Exchange](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2050/Secure/Sitecore_Connect_for_SFMC_5_0_Behavioral_Data_Exchange_Installation_Guide-en.pdf) | The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-marketing-cloud/50/sitecore-connect-for-salesforce-marketing-cloud/en/sitecore-connect-for-salesforce-marketing-cloud.html) | The Sitecore documentation website with Sitecore Connect™ for Salesforce Marketing Cloud documentation. | - -## Content Exchange - - | Resource | Description | - | --- | --- | - | [Installation Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2050/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Content%20Exchange%205.0.0%20rev.%2000162.zip) | Sitecore Installation Package for Content Management or Standalone role. | - | [Update Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2050/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Content%20Exchange%20(update%20package)%205.0.0%20rev.%2000162.update) | Update package to upgrade Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange from version 4.0.0 to 5.0.0. | - | [Release Notes](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_50/Release_Notes_CE) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation and Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2050/Secure/Sitecore_Connect_for_SFMC_5_0_Content_Exchange_Installation_Guide-en.pdf) | The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-marketing-cloud/50/sitecore-connect-for-salesforce-marketing-cloud/en/sitecore-connect-for-salesforce-marketing-cloud.html) | The Sitecore documentation website with Sitecore Connect™ for Salesforce Marketing Cloud documentation. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60/Release_Notes__BDE.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60/Release_Notes__BDE.md deleted file mode 100644 index 4eac97bce..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60/Release_Notes__BDE.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "Release Notes - BDE" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60/Release_Notes__BDE ---- - -**May 2021, released Sitecore Connect for Salesforce Marketing Cloud - Behavioral Data Exchange 6.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | AD no. | - | --- | --- | --- | - | Support for Sitecore XP 10.1.0. | | | - | You can now synchronize contact information from Salesforce Marketing Cloud to Sitecore XP. | | 431269 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60/Release_Notes__CE.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60/Release_Notes__CE.md deleted file mode 100644 index ffd1941d4..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60/Release_Notes__CE.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes - CE" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60/Release_Notes__CE ---- - -**May 2021, released Sitecore Connect for Salesforce Marketing Cloud - Content Exchange 6.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | AD no. | - | --- | --- | --- | - | Support for Sitecore XP 10.1.0. | | | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60/index.md deleted file mode 100644 index bb1d6a52d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60/index.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: "Sitecore Connect™ for Salesforce Marketing Cloud 6.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60 ---- - -Sitecore Connect™ for Salesforce Marketing Cloud unites Sitecore Experience Platform content and behavioural data with Salesforce Marketing Cloud.\ -Sitecore Connect™ for Salesforce Marketing Cloud 6.0 is compatible with Sitecore XP 10.1. - -See [all available versions here](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud). - -## Behavioral Data Exchange - - | Resource | Description | - | --- | --- | - | [Behavioral Data Exchange](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2060/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%206.0.0%20rev.%2000389.zip) | Sitecore Installation Package for Content Management or Standalone role. | - | [Behavioral Data Exchange Action Plugin for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2060/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%20Marketing%20Automation%206.0.0%20rev.%2000389.scwdp.zip) | Provides an ability to trigger BDE Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - | [Behavioral Data Exchange Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2060/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20BDE%20Plugin%20for%20Tenant%20Service%206.0.0%20rev.%2000389.scwdp.zip) | Provides an ability to use Behavioral Data Exchange SFMC pipelines, value accessors and trigger SFMC journey builder API events from Tenant Service site. | - | [Update Package for Behavioral Data Exchange](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2060/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20BDE%20(update%20package)%206.0.0%20rev.%2000389.update) | Update package to upgrade Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange from version 5.0.0 to 6.0.0. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sfmcbde%2F6.0.0.00389.28) | The Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange in development and production container environments. | - | [Release Notes](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60/Release_Notes__BDE) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation and Configuration Guide for Behavioral Data Exchange](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2060/Secure/Sitecore_Connect_for_SFMC_6_0_Behavioral_Data_Exchange_Installation_Guide-en.pdf) | The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange. | - | [Installation and Configuration Guide for BDE Marketing Automation Activity](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2060/Secure/Sitecore_Connect_for_SFMC_6_0_Activity_for_Marketing_Automation_Installatio-en.pdf) | The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Activity for Marketing Automation. | - | [Installation and Configuration Guide for BDE Sitecore Sync](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2060/Secure/Sitecore_Connect_for_SFMC_6_0_Activity_for_Sitecore_Sync_Installation_Guide-en.pdf) | Provides an ability to trigger BDE Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - | [Container Deployment Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2060/Secure/Sitecore_Connect_for_SFMC_6_0_Behavioral_Data_Exchange_Container_Deployment-en.pdf) | The installation and configuration procedure for Sitecore Connect for Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange in Docker or Kubernetes. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-marketing-cloud/60/sitecore-connect-for-salesforce-marketing-cloud/en/sitecore-connect-for-salesforce-marketing-cloud.html) | The Sitecore documentation website with Sitecore Connect™ for Salesforce Marketing Cloud documentation. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Content Exchange - - | Resource | Description | - | --- | --- | - | [Installation Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2060/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Content%20Exchange%206.0.0%20rev.%2000191.zip) | Sitecore Installation Package for Content Management or Standalone role. | - | [Update Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2060/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Content%20Exchange%20(update%20package)%206.0.0%20rev.%2000191.update) | Update package to upgrade Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange from version 5.0.0 to 6.0.0. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sfmcce%2F6.0.0.00191.119) | The Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange in development and production container environments. | - | [Release Notes](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60/Release_Notes__CE) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation and Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2060/Secure/Sitecore_Connect_for_SFMC_6_0_Content_Exchange_Installation_Guide-en.pdf) | The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange. | - | [Container Deployment Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2060/Secure/Sitecore_Connect_for_SFMC_6_0_Content_Exchange_Container_Deployment_Guide-en.pdf) | The installation and configuration procedure for Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange in Docker or Kubernetes. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-marketing-cloud/60/sitecore-connect-for-salesforce-marketing-cloud/en/sitecore-connect-for-salesforce-marketing-cloud.html) | The Sitecore documentation website with Sitecore Connect™ for Salesforce Marketing Cloud documentation. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70/Release_Notes__BDE.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70/Release_Notes__BDE.md deleted file mode 100644 index bb11de4c8..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70/Release_Notes__BDE.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Release Notes - BDE" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70/Release_Notes__BDE ---- - -**December 2021, released Sitecore Connect for Salesforce Marketing Cloud - Behavioral Data Exchange 7.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | ADO no. | - | --- | --- | --- | - | Support for Sitecore XP 10.2.0. | | | - | Support for Consumption Tracking. | | 455697 | - | Support for Items as Resources. | | | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | ADO no. | - | --- | --- | --- | - | The `.xml` dialog file that allows you to configure the rule for the two-way synchronization feature is missing. | | 489162 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70/Release_Notes__CE.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70/Release_Notes__CE.md deleted file mode 100644 index de06e1998..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70/Release_Notes__CE.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -title: "Release Notes - CE" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70/Release_Notes__CE ---- - -**December 2021, released Sitecore Connect for Salesforce Marketing Cloud - Content Exchange 7.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | ADO no. | - | --- | --- | --- | - | Support for Sitecore XP 10.2.0. | | | - | Support for Consumption Tracking. | | 480156 | - | Support for Items as Resources. | | | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70/index.md deleted file mode 100644 index 7b6686c39..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70/index.md +++ /dev/null @@ -1,78 +0,0 @@ ---- -title: "Sitecore Connect™ for Salesforce Marketing Cloud 7.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70 ---- - -Sitecore Connect™ for Salesforce Marketing Cloud unites Sitecore Experience Platform content and behavioural data with Salesforce Marketing Cloud.\ -Sitecore Connect™ for Salesforce Marketing Cloud 7.0 is compatible with Sitecore XP 10.2. - -See [all available versions here](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud). - -## Behavioral Data Exchange Downloads - - | Resource | Description | - | --- | --- | - | [Behavioral Data Exchange](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2070/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%207.0.0%20rev.%2000416.zip) | Sitecore Installation Package for Content Management or Standalone role. | - | [Behavioral Data Exchange Action Plugin for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2070/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%20Marketing%20Automation%207.0.0%20rev.%2000416.scwdp.zip) | Provides an ability to trigger BDE Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - | [Behavioral Data Exchange Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2070/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20BDE%20Plugin%20for%20Tenant%20Service%207.0.0%20rev.%2000416.scwdp.zip) | Provides an ability to use Behavioral Data Exchange SFMC pipelines, value accessors and trigger SFMC journey builder API events from Tenant Service site. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sfmcbde%2F7.0.0.00416.144) | The Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Behavioral Data Exchange Upgrades - - | Resource | Description | - | --- | --- | - | [Update resources for Behavioral Data Exchange](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Update package to upgrade Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange from version 1.0.0 to 7.0.0. | - -## Behavioral Data Exchange Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70/Release_Notes__BDE) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation and Configuration Guide for Behavioral Data Exchange](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/70/sitecore-connect-for-salesforce-marketing-cloud/installing-sfmc-behavioral-data-exchange.html) | The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange. | - | [Installation and Configuration Guide for BDE Marketing Automation Activity](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/70/sitecore-connect-for-salesforce-marketing-cloud/install-sfmc-behavioral-data-exchange-activity-for-marketing-automation-on-prem.html) | The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Activity for Marketing Automation. | - | [Installation and Configuration Guide for BDE Sitecore Sync](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/70/sitecore-connect-for-salesforce-marketing-cloud/walkthrough--installing-sfmc-behavioral-data-exchange-sitecore-sync-on-prem.html) | Provides an ability to trigger BDE Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - | [Container Deployment Guide](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/70/sitecore-connect-for-salesforce-marketing-cloud/installing-sfmc-behavioral-data-exchange-on-containers.html) | The installation and configuration procedure for Sitecore Connect for Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange in Docker or Kubernetes. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-marketing-cloud/70/sitecore-connect-for-salesforce-marketing-cloud/en/sitecore-connect-for-salesforce-marketing-cloud.html) | The Sitecore documentation website with Sitecore Connect™ for Salesforce Marketing Cloud documentation. | - -## Behavioral Data Exchange Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2070/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%207.0.0%20rev.%2000416%20(da-DK).zip) | Sitecore Connect™ for Salesforce Marketing Cloud – Behavioral Data Exchange Client Translations file Danish (da-DK). | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2070/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%207.0.0%20rev.%2000416%20(de-DE).zip) | Sitecore Connect™ for Salesforce Marketing Cloud – Behavioral Data Exchange Client Translations file German (de-DE). | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2070/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%207.0.0%20rev.%2000416%20(ja-JP).zip) | Sitecore Connect™ for Salesforce Marketing Cloud – Behavioral Data Exchange Client Translations file Japanese (ja-JP). | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2070/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%207.0.0%20rev.%2000416%20(zh-CN).zip) | Sitecore Connect™ for Salesforce Marketing Cloud – Behavioral Data Exchange Client Translations file Chinese (zh-CN). | - -## Content Exchange Downloads - - | Resource | Description | - | --- | --- | - | [Installation Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2070/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Content%20Exchange%207.0.0%20rev.%2000210.zip) | Sitecore Installation Package for Content Management or Standalone role. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sfmcce%2F7.0.0.00210.245) | The Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Content Exchange Upgrades - - | Resource | Description | - | --- | --- | - | [Update resources for Content Exchange](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Update resources to upgrade Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange from version 1.0.0 to 7.0.0. | - -## Content Exchange Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70/Release_Notes__CE) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation and Configuration Guide](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/70/sitecore-connect-for-salesforce-marketing-cloud/walkthrough--installing-sfmc-content-exchange-on-prem.html) | The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange. | - | [Container Deployment Guide](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/70/sitecore-connect-for-salesforce-marketing-cloud/installing-sfmc-content-exchange-on-containers.html) | The installation and configuration procedure for Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange in Docker or Kubernetes. | - | [Documentation](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/70/sitecore-connect-for-salesforce-marketing-cloud/sfmc-content-exchange-architecture.html) | The Sitecore documentation website with Sitecore Connect™ for Salesforce Marketing Cloud documentation. | - -## Content Exchange Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2070/Secure/SFMC%20CE%207.0.0%20rev.%2000210%20(da-DK).zip) | Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange Client Translations file Danish (da-DK). | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2070/Secure/SFMC%20CE%207.0.0%20rev.%2000210%20(de-DE).zip) | Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange Client Translations file German (de-DE). | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2070/Secure/SFMC%20CE%207.0.0%20rev.%2000210%20(ja-JP).zip) | Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange Client Translations file Japanese (ja-JP). | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2070/Secure/SFMC%20CE%207.0.0%20rev.%2000210%20(zh-CN).zip) | Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange Client Translations file Chinese (zh-CN). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80/Release_Notes__BDE.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80/Release_Notes__BDE.md deleted file mode 100644 index c62d3933b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80/Release_Notes__BDE.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes - BDE" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80/Release_Notes__BDE ---- - -**January 2023, released Sitecore Connect for Salesforce Marketing Cloud - Behavioral Data Exchange 8.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | ADO no. | - | --- | --- | --- | - | Support for Sitecore XP 10.3.0. | | | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80/Release_Notes__CE.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80/Release_Notes__CE.md deleted file mode 100644 index 4ff2c6775..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80/Release_Notes__CE.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: "Release Notes - CE" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80/Release_Notes__CE ---- - -**January 2023, released Sitecore Connect for Salesforce Marketing Cloud - Content Exchange 8.0.0** - -## New features/improvements - - | Description | Customer ticket ID (or other) | ADO no. | - | --- | --- | --- | - | Support for Sitecore XP 10.3.0. | | | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80/index.md deleted file mode 100644 index 4e305f946..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80/index.md +++ /dev/null @@ -1,78 +0,0 @@ ---- -title: "Sitecore Connect™ for Salesforce Marketing Cloud 8.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80 ---- - -Sitecore Connect™ for Salesforce Marketing Cloud unites Sitecore Experience Platform content and behavioural data with Salesforce Marketing Cloud.\ -Sitecore Connect™ for Salesforce Marketing Cloud 8.0 is compatible with Sitecore XP 10.3. - -See [all available versions here](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud). - -## Behavioral Data Exchange Downloads - - | Resource | Description | - | --- | --- | - | [Behavioral Data Exchange](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2080/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%208.0.437%20rev.%2000437.zip) | Sitecore Installation Package for Content Management or Standalone role. | - | [Behavioral Data Exchange Action Plugin for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2080/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%20Marketing%20Automation%208.0.437%20rev.%2000437.scwdp.zip) | Provides an ability to trigger BDE Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - | [Behavioral Data Exchange Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2080/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20BDE%20Plugin%20for%20Tenant%20Service%208.0.437%20rev.%2000437.scwdp.zip) | Provides an ability to use Behavioral Data Exchange SFMC pipelines, value accessors and trigger SFMC journey builder API events from Tenant Service site. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sfmcbde%2F8.0.437.00437.189) | The Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Behavioral Data Exchange Upgrades - - | Resource | Description | - | --- | --- | - | [Update resources for Behavioral Data Exchange](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Update package to upgrade Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange from version 1.0.0 to 8.0.0. | - -## Behavioral Data Exchange Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80/Release_Notes__BDE) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation and Configuration Guide for Behavioral Data Exchange](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/80/sitecore-connect-for-salesforce-marketing-cloud/installing-sfmc-behavioral-data-exchange.html) | The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange. | - | [Installation and Configuration Guide for BDE Marketing Automation Activity](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/80/sitecore-connect-for-salesforce-marketing-cloud/install-sfmc-behavioral-data-exchange-activity-for-marketing-automation-on-prem.html) | The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Activity for Marketing Automation. | - | [Installation and Configuration Guide for BDE Sitecore Sync](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/80/sitecore-connect-for-salesforce-marketing-cloud/walkthrough--installing-sfmc-behavioral-data-exchange-sitecore-sync-on-prem.html) | Provides an ability to trigger BDE Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - | [Container Deployment Guide](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/80/sitecore-connect-for-salesforce-marketing-cloud/installing-sfmc-behavioral-data-exchange-on-containers.html) | The installation and configuration procedure for Sitecore Connect for Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange in Docker or Kubernetes. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-marketing-cloud/80/sitecore-connect-for-salesforce-marketing-cloud/en/sitecore-connect-for-salesforce-marketing-cloud.html) | The Sitecore documentation website with Sitecore Connect™ for Salesforce Marketing Cloud documentation. | - -## Behavioral Data Exchange Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2080/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%208.0.437%20rev.%2000437%20(da-DK).zip) | Sitecore Connect™ for Salesforce Marketing Cloud – Behavioral Data Exchange Client Translations file Danish (da-DK). | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2080/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%208.0.437%20rev.%2000437%20(de-DE).zip) | Sitecore Connect™ for Salesforce Marketing Cloud – Behavioral Data Exchange Client Translations file German (de-DE). | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2080/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%208.0.437%20rev.%2000437%20(ja-JP).zip) | Sitecore Connect™ for Salesforce Marketing Cloud – Behavioral Data Exchange Client Translations file Japanese (ja-JP). | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2080/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%208.0.437%20rev.%2000437%20(zh-CN).zip) | Sitecore Connect™ for Salesforce Marketing Cloud – Behavioral Data Exchange Client Translations file Chinese (zh-CN). | - -## Content Exchange Downloads - - | Resource | Description | - | --- | --- | - | [Installation Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2080/Secure/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Content%20Exchange%208.0.220%20rev.%2000220.zip) | Sitecore Installation Package for Content Management or Standalone role. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sfmcce%2F8.0.220.00220.298) | The Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Content Exchange Upgrades - - | Resource | Description | - | --- | --- | - | [Update resources for Content Exchange](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Update resources to upgrade Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange from version 1.0.0 to 8.0.0. | - -## Content Exchange Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80/Release_Notes__CE) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation and Configuration Guide](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/80/sitecore-connect-for-salesforce-marketing-cloud/walkthrough--installing-sfmc-content-exchange-on-prem.html) | The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange. | - | [Container Deployment Guide](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/80/sitecore-connect-for-salesforce-marketing-cloud/installing-sfmc-content-exchange-on-containers.html) | The installation and configuration procedure for Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange in Docker or Kubernetes. | - | [Documentation](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/80/sitecore-connect-for-salesforce-marketing-cloud/sfmc-content-exchange-architecture.html) | The Sitecore documentation website with Sitecore Connect™ for Salesforce Marketing Cloud documentation. | - -## Content Exchange Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2080/Secure/SFMC%20CE%208.0.220%20rev.%2000220%20(da-DK).zip) | Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange Client Translations file Danish (da-DK). | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2080/Secure/SFMC%20CE%208.0.220%20rev.%2000220%20(de-DE).zip) | Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange Client Translations file German (de-DE). | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2080/Secure/SFMC%20CE%208.0.220%20rev.%2000220%20(ja-JP).zip) | Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange Client Translations file Japanese (ja-JP). | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2080/Secure/SFMC%20CE%208.0.220%20rev.%2000220%20(zh-CN).zip) | Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange Client Translations file Chinese (zh-CN). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_90/Release_Notes__BDE.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_90/Release_Notes__BDE.md deleted file mode 100644 index 803870062..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_90/Release_Notes__BDE.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -title: "Release Notes - BDE" -description: "" ---- - -**May 2024, released Sitecore Connect for Salesforce Marketing Cloud - Behavioral Data Exchange 9.0.0** - -## New features/improvements - - | Description | ADO no. | - | --- | --- | - | Added compatiblility with Sitecore XP 10.4.0. | | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_90/Release_Notes__CE.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_90/Release_Notes__CE.md deleted file mode 100644 index c380e5f17..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_90/Release_Notes__CE.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -title: "Release Notes - CE" -description: "" ---- - -**May 2024, released Sitecore Connect for Salesforce Marketing Cloud - Content Exchange 9.0.0** - -## New features/improvements - - | Description | ADO no. | - | --- | --- | - | Added compatibilty with Sitecore XP 10.4.0. | | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_90/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_90/index.md deleted file mode 100644 index 2bc9802f9..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_90/index.md +++ /dev/null @@ -1,76 +0,0 @@ ---- -title: "Sitecore Connect™ for Salesforce Marketing Cloud 9.0" -description: "" ---- - -Sitecore Connect™ for Salesforce Marketing Cloud unites Sitecore Experience Platform content and behavioural data with Salesforce Marketing Cloud.\ -Sitecore Connect™ for Salesforce Marketing Cloud 9.0 is compatible with Sitecore XP 10.4.\ -See [all available versions here](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud). - -## Behavioral Data Exchange Downloads - - | Resource | Description | - | --- | --- | - | [Behavioral Data Exchange](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2090/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%209.0.2%20rev.%2000440.zip) | Sitecore Installation Package for Content Management or Standalone role. | - | [Behavioral Data Exchange Action Plugin for Marketing Automation](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2090/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%20Marketing%20Automation%209.0.2%20rev.%2000440.scwdp.zip) | Provides an ability to trigger BDE Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - | [Behavioral Data Exchange Plugin for Tenant Service](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2080/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20BDE%20Plugin%20for%20Tenant%20Service%208.0.437%20rev.%2000437.scwdp.zip) | **Package for 9.0 is coming soon!** Provides an ability to use Behavioral Data Exchange SFMC pipelines, value accessors and trigger SFMC journey builder API events from Tenant Service site. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sfmcbde%2F9.0.2.00440.197) | The Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Behavioral Data Exchange Upgrades - - | Resource | Description | - | --- | --- | - | [Update resources for Behavioral Data Exchange](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Update package to upgrade Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange from version 1.0.0 to 9.0.0. | - -## Behavioral Data Exchange Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_90/Release_Notes__BDE) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation and Configuration Guide for Behavioral Data Exchange](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/80/sitecore-connect-for-salesforce-marketing-cloud/installing-sfmc-behavioral-data-exchange.html) | **Updated document for 9.0 is to be completed!** The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange. | - | [Installation and Configuration Guide for BDE Marketing Automation Activity](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/80/sitecore-connect-for-salesforce-marketing-cloud/install-sfmc-behavioral-data-exchange-activity-for-marketing-automation-on-prem.html) | **Updated document for 9.0 is to be completed!** The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Activity for Marketing Automation. | - | [Installation and Configuration Guide for BDE Sitecore Sync](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/80/sitecore-connect-for-salesforce-marketing-cloud/walkthrough--installing-sfmc-behavioral-data-exchange-sitecore-sync-on-prem.html) | **Updated document for 9.0 is to be completed** Provides an ability to trigger BDE Marketing Automation activity from within a Marketing Automation plan by the Tenant Service. | - | [Container Deployment Guide](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/80/sitecore-connect-for-salesforce-marketing-cloud/installing-sfmc-behavioral-data-exchange-on-containers.html) | **Updated document for 9.0 is to be completed!** The installation and configuration procedure for Sitecore Connect for Sitecore Connect™ for Salesforce Marketing Cloud - Behavioral Data Exchange in Docker or Kubernetes. | - | [Documentation](https://doc.sitecore.com/developers/salesforce-marketing-cloud/80/sitecore-connect-for-salesforce-marketing-cloud/en/sitecore-connect-for-salesforce-marketing-cloud.html) | **Updated document for 9.0 is to be completed!** The Sitecore documentation website with Sitecore Connect™ for Salesforce Marketing Cloud documentation. | - -## Behavioral Data Exchange Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2090/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%209.0.2%20rev.%2000440%20(da-DK).zip) | Sitecore Connect™ for Salesforce Marketing Cloud – Behavioral Data Exchange Client Translations file Danish (da-DK). | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2090/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%209.0.2%20rev.%2000440%20(de-DE).zip) | Sitecore Connect™ for Salesforce Marketing Cloud – Behavioral Data Exchange Client Translations file German (de-DE). | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2090/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%209.0.2%20rev.%2000440%20(ja-JP).zip) | Sitecore Connect™ for Salesforce Marketing Cloud – Behavioral Data Exchange Client Translations file Japanese (ja-JP). | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2090/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Behavioral%20Data%20Exchange%209.0.2%20rev.%2000440%20(zh-CN).zip) | Sitecore Connect™ for Salesforce Marketing Cloud – Behavioral Data Exchange Client Translations file Chinese (zh-CN). | - -## Content Exchange Downloads - - | Resource | Description | - | --- | --- | - | [Installation Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2090/Sitecore%20Connect%20for%20Salesforce%20Marketing%20Cloud%20-%20Content%20Exchange%209.0.2%20rev.%2000225.zip) | Sitecore Installation Package for Content Management or Standalone role. | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sfmcce%2F9.0.2.00225.315) | The Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Content Exchange Upgrades - - | Resource | Description | - | --- | --- | - | [Update resources for Content Exchange](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Update resources to upgrade Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange from version 1.0.0 to 9.0.0. | - -## Content Exchange Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_90/Release_Notes__CE) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Installation and Configuration Guide](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/80/sitecore-connect-for-salesforce-marketing-cloud/walkthrough--installing-sfmc-content-exchange-on-prem.html) | **Updated document for 9.0 is to be completed!** The installation and configuration guide for the Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange. | - | [Container Deployment Guide](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/80/sitecore-connect-for-salesforce-marketing-cloud/installing-sfmc-content-exchange-on-containers.html) | **Updated document for 9.0 is to be completed!** The installation and configuration procedure for Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange in Docker or Kubernetes. | - | [Documentation](https://doc.sitecore.com/xp/en/developers/salesforce-marketing-cloud/80/sitecore-connect-for-salesforce-marketing-cloud/sfmc-content-exchange-architecture.html) | **Updated document for 9.0 is to be completed!** The Sitecore documentation website with Sitecore Connect™ for Salesforce Marketing Cloud documentation. | - -## Content Exchange Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2090/SFMC%20CE%209.0.2%20rev.%2000225%20(da-DK).zip) | Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange Client Translations file Danish (da-DK). | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2090/SFMC%20CE%209.0.2%20rev.%2000225%20(de-DE).zip) | Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange Client Translations file German (de-DE). | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2090/SFMC%20CE%209.0.2%20rev.%2000225%20(ja-JP).zip) | Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange Client Translations file Japanese (ja-JP). | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud/1x/Sitecore%20Connect%20software%20for%20Salesforce%20Marketing%20Cloud%2090/SFMC%20CE%209.0.2%20rev.%2000225%20(zh-CN).zip) | Sitecore Connect™ for Salesforce Marketing Cloud - Content Exchange Client Translations file Chinese (zh-CN). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/index.md deleted file mode 100644 index efe9be78f..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/index.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: "Sitecore Connect™ for Salesforce Marketing Cloud" -description: "Sitecore Connect™ unites Sitecore Experience Manager and Sitecore Experience Platform content and data with Salesforce Marketing Cloud." -origin: https://dev.sitecore.net/Downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud.aspx ---- - - - -## Sitecore Connect™ for Salesforce Marketing Cloud - - -[Sitecore Connect™ for Salesforce Marketing Cloud 9.0](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_90)\ -[Sitecore Connect™ for Salesforce Marketing Cloud 8.0](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80)\ -[Sitecore Connect™ for Salesforce Marketing Cloud 7.0](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70)\ -[Sitecore Connect™ for Salesforce Marketing Cloud 6.0](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60)\ -[Sitecore Connect™ for Salesforce Marketing Cloud 5.0](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_50)\ -[Sitecore Connect™ for Salesforce Marketing Cloud 4.0](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_40)\ -[Sitecore Connect™ for Salesforce Marketing Cloud 3.0](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_30)\ -[Sitecore Connect™ for Salesforce Marketing Cloud 2.0](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_20)\ -[Sitecore Connect™ for Salesforce Marketing Cloud 1.0](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_10) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Embeddable_Forms/1x/Sitecore_Embeddable_Forms_100/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Embeddable_Forms/1x/Sitecore_Embeddable_Forms_100/index.md deleted file mode 100644 index e9dc3c334..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Embeddable_Forms/1x/Sitecore_Embeddable_Forms_100/index.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: "Sitecore Embeddable Forms 1.0.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Embeddable_Forms/1x/Sitecore_Embeddable_Forms_100.aspx ---- - -Sitecore Embeddable Forms Framework (EFF) allow forms to be displayed on any website page, including websites that are not Sitecore applications. They are isolated and unobtrusive; hence they cannot hurt any other functionality or style of the page where they are embedded. - -Sitecore Embeddable Forms 1.0.0 is compatible with Sitecore Experience Platform 10.3 and later. - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Embeddable Forms for Sitecore](https://scdp.blob.core.windows.net/downloads/Sitecore%20Embeddable%20Forms/1x/Sitecore%20Embeddable%20Forms%20100/Secure/Sitecore%20Embeddable%20Forms%20for%20Sitecore%2010.3.0%201.0.0.zip) | Download Sitecore Embeddable Forms. | - -## Documentation - - | Resource | Description | - | --- | --- | - | [Embeddable Forms Framework (EFF) documentation](https://doc.sitecore.com/xp/en/developers/103/sitecore-experience-manager/embeddable-forms-framework.html) | Developer documentation for Embeddable Forms Framework (EFF). | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Embeddable_Forms/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Embeddable_Forms/index.md deleted file mode 100644 index bca3acdb8..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Embeddable_Forms/index.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "Sitecore Embeddable Forms" -description: "Sitecore Embeddable Forms Framework (EFF) allow forms to be displayed on any website page, including websites that are not Sitecore applications. They are isolated and unobtrusive; hence they cannot hurt any other functionality or style of the page where they are embedded." -origin: https://dev.sitecore.net/Downloads/Sitecore_Embeddable_Forms.aspx ---- - - - -## Sitecore Embeddable Forms 1.x - - -[Sitecore Embeddable Forms 1.0.0](/downloads/Sitecore_Embeddable_Forms/1x/Sitecore_Embeddable_Forms_100) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/10/Sitecore_Experience_Accelerator_10_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/10/Sitecore_Experience_Accelerator_10_Initial_Release/Release_Notes.md deleted file mode 100644 index e37d7e202..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/10/Sitecore_Experience_Accelerator_10_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: "Release notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/10/Sitecore_Experience_Accelerator_10_Initial_Release/Release_Notes ---- - -**August 2016 – released Sitecore Experience Accelerator 1.0 (rev. 160815)** - -The Sitecore Experience Accelerator (SXA) enables parallel work streams (content, creative design, UX, coding) that not only reduce the time required to produce a website, but also improve the quality of the website by allowing all contributors validate each other's contributions. SXA provides reusable user experience layouts and components, while fully integrating into the Sitecore editing experience. - -- Users can create pages and enter content while running the creative design process in parallel. -Site architects can create a wireframe version of the website within Sitecore.- Content authors and UI designers can work simultaneously on the wireframe site. -- Content authors can enter real content into the wireframe environment. -- UI designers can work on an exported version of the wireframe site using their favorite tools and the Experience Accelerator Creative Exchange synchronizes the UI design back into Sitecore. - -SXA enables back-end developers to work on integration with external systems and custom components while content authors and creative designers are working in their areas at the same time. - -## New feature/improvements - - | Description | - | --- | - | ​SXA enables parallel work streams (content, creative design, UX, coding) that not only reduce the time required to produce a website, but also improve the quality of the website by allowing all contributors validate each other's contributions.​ | - | SXA provides reusable user experience layouts and components.​ | - | SXA fully integrates into the Sitecore editing experience.​ | - | SXA enables back-end developers to work on integration with external systems and custom components while content authors and creative designers are working in their areas at the same time.​​ | - | SXA follows Habitat best practices.​ | - | ​SXA introduces drag-and-drop editing of web pages in the Experience Editor. | - | SXA provides a wide range of flexible and customizable website components, including:Basic contentCompositeContextEngagementEventsFormsMapsMediaNavigationPage ContentPage StructureSearchSecuritySocial | - | ​SXA renderings support variants,enabling non-technical users to create unlimited rendering variations without coding.​ | - | SXA provides content author editable metadata renderings.​ | - | SXA websites provide responsive design using a grid-based layout system based on dynamic placeholders and column and row splitters. | - | ​SXA allows you to build reusable wireframes, including both page designs and partial designs (which support inheritance). | - | SXA websites are fully skinnable through support for multiple themes and theme inheritance.​
| - | ​SXA adds support for multiple tenants and sites in Sitecore, includes a site creation wizard, provides site implementation independence, supports site specific internationalization, and supports grouping tenants and sites. | - | ​SXA websites support faceted search by default. Search can include any piece of content. Users define the scope dedicated to specific areas or aspects of the content. Experience Accelerator includes flexible renderings for capturing search criteria from visitors and presenting paged results. | - | SXA includes geospacial-based search with results displayed on a map. | - | SXA provides renderings that are xDB-ready and supports outcome optimization through A/B testing.
| \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/10/Sitecore_Experience_Accelerator_10_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/10/Sitecore_Experience_Accelerator_10_Initial_Release/index.md deleted file mode 100644 index 741044b4a..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/10/Sitecore_Experience_Accelerator_10_Initial_Release/index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Sitecore Experience Accelerator 1.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/10/Sitecore_Experience_Accelerator_10_Initial_Release.aspx ---- - -The Sitecore® Experience Accelerator provides reusable, templated UX layouts and components to help you get up and running quickly. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Experience Accelerator for 8.1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/10/Sitecore%20Experience%20Accelerator%2010%20Initial%20Release/Secure/Sitecore%20Experience%20Accelerator%201.0.0%20for%208.1.zip) | Download Sitecore Experience Accelerator for use with Experience Platform 8.1 | - | [Sitecore Experience Accelerator for 8.2](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/10/Sitecore%20Experience%20Accelerator%2010%20Initial%20Release/Secure/Sitecore%20Experience%20Accelerator%201.0.0%20for%208.2.zip) | Download Sitecore Experience Accelerator for use with Experience Platform 8.2 | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Experience_Accelerator/10/Sitecore_Experience_Accelerator_10_Initial_Release/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known Issues](https://kb.sitecore.net/articles/196733) | Choose this link to access the Sitecore Knowledge Base. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/10/Sitecore%20Experience%20Accelerator%2010%20Initial%20Release/Secure/SXA-1.0-Installation-Guide.pdf) | The installation procedure for the Sitecore Experience Accelerator. | - | [Documentation](https://doc.sitecore.net:443/en/Products/Sitecore_Experience_Accelerator) | Documentation for Sitecore Experience Accelerator. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1000/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1000/Release_Notes.md deleted file mode 100644 index 78cedd163..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1000/Release_Notes.md +++ /dev/null @@ -1,177 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1000/Release_Notes ---- - -**August 2020 – released Sitecore Experience Accelerator 10.0.0** - -Sitecore Experience Accelerator (SXA) enables parallel work streams (content, creative design, UX, coding) to not only reduce the time required to produce a website, but also improve the quality by allowing all contributors to validate each other's contributions. SXA provides reusable user experience layouts and components that are fully integrated into the Sitecore editing experience. - -## Highlights - -- SXA now supports running on an instance hosted in a Docker container​. - -## New feature/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​The introduction of HTTP header configuration now allows search service requests to be cached. | 540504, CS0167583 | 361084 | - | The SXA CLI now allows you to upload theme assets from the command line without having to run the watching task​.​​ | | 403655 | - | jQuery has been updated to version 3.4.1.​​ | 533216, 536044] | 334362 | - | Language fallback has been enabled by default on all the out of the box data sources.​​​ | | 345838 | - | ​​Users can now de-select the selected facet values individually in the `Facets Summary` component. | | 359629 | - | ​​The performance of the rendering placeholder wrappers​ has been improved. | | 365404 | - | ​​A new custom workflow action has been added to improve the inclusion of data source related items in the `Page` workflow. | | 369126 | - | We have introduced a cache for tenant related tokens and this has improved system perfromance.​​ | 541416, CS0181339 | 370127 | - | ​​It is now possible to define an A/B test on a component in a partial design and for the test to be executed on every page that uses the partial design. | | 374515 | - | ​​SXA components that accept content search queries now support SXA query tokens​. | | 380800 | - | It is now possible to add boosting rules to queries that are defined in rendering variants.​​ | | 381970 | - | ​​It is now possible to execute content search queries in Scriban using the new `sc_search` extension method.​ | | 383504 | - | The Experience Editor now shows the `Semantics` field as well as the `SXA Tags` field when you click the `Tags` button.​​ | CS0180481 | 388272 | - | You can now use the new `sc_inheritsfrom` embedded function to test whether an item inherits a template within a Scriban template. ​​ | | 391261 | - | ​​You can use the new `sc_getitem` embedded function to retrieve a single item by specifying an ID or a path within a Scriban template. | | 393752 | - | The `maxTermsCountInFacet` setting is now set at 50 for backward compatibility and provides faster search in Azure search indexes.​​​​ | | 407140 | - | Creative Exchange Live has been upgraded to leverage Gulp version 4.​​ | | 401392 | - | Creative Exchange Live has been updated to run on NodeJS 12. ​​ | | 403648 | - | The SXA CLI now allows you to build optimized theme assets from the command line without running the watching task.​​ | | 403651 | - | ​​You can now build, optimize, and upload CSS/JS/Sprite assets within the SXA CLI. | | 406147 | - | ​​SXA now supports running on an instance hosted in a Docker container​. | | 415946 | - | ​​If the CLI fails because of the required node packages were not not installed​, it provides a description of the problem. | | 412131 | - | ​​A new `--help` parameter has been added to the SXA CLI to help developers discover which parameters are used. | | 410847 | - -## Breaking changes - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | The SXA Azure extensions for GeoSpatial queries have been ported back to the platform so the every Sitecore customer can benefit from them.​​ | 325329 | 390744 | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | The `Restrictive` cookie warning setting does not restrict access to the page content​.​​ | | 327035 | - | ​​​When you move the slider in a Slider or Range Slider, it issues search requests and creates unwanted server traffic. | | 247977 | - | If a visitor tries to scroll on a carousel component on a mobile device, the page cannot scroll vertically.​​ | 526020 | 312889 | - | If `Expand On Hover` is enabled, you cannot click to collapse an Accordion section.​​ | 526194 | 313533 | - | ​​In the Basic theme​, the `TagList` does not scale the tag elements correctly. | | 318747 | - | ​​The thumbnail image for the SXA Gallery Video component does not contain the `alt` attribute. | 528069 | 319611 | - | ​​​Only the default POI variant can be used on a map. | 528149 | 320751 | - | When you unlock a content page, the composite datasource subitems remain locked.​​ | 529122, 531509, 537040 | 324927 | - | ​​If the `Media.AlwaysAppendRevision `setting is set to `true`, theme asset URLs are generated without a hash and this causes `MediaRequestProtection `errors.`````` | 530905, CS0180370 | 328685 | - | ​​If the name of a facet contains a space, it does not receive the active-facet class when you use a Filter (Checklist) with multiple selections. | 532747, 533232, 537276, 542335, CS0170369, CS0173958, CS0179707, CS0182401 | 334311 | - | ​​A multi-language sitemap contains redundant language entries. | 533334, 534193, 537473, 538300, 539766 | 335397 | - | ​​If you use the default link provider, the sitemap lists URL that contain a double hostname. | 532088, 536328 | 337372 | - | ​​Publishing only clears the HTML cache for the first site definition if multiple site definitions exist in a site. | 536094, 543415, CS0177798 | 346899 | - | ​​If you add the POI details from the `Geospatial` tab, unsaved data is lost. | 537926, 539448 | 351468 | - | If you remove a column splitter from a placeholder and then add and configure a new column splitter, you receive an error message.​​ | 537150 | 352447 | - | The `ResolveRenderingDatasourceCache` processor does not take the request language into consideration when retrieving a data source.​​ | 538461 | 353548 | - | ​​The `Language Selector` dropdown list does not appear in themes that are based on the `Basic 2` theme​. | | 354286 | - | ​​Responsive images are not shown in the `Search Result` rendering. | 538670, 541429, 541530 | 354543 | - | If you use the Solr search provider, the suggestions that appear in the Search Box may not be clickable if the indexed text contains special characters.​​ | 538663 | 354683 | - | ​​Generating the `Optimized-min` item can cause SQL Server errors in scaled environments with a high load. | 537204 | 355141 | - | ​​In the `Presentation Details` dialog box, ​if you add a component, the list of available renderings that you can select from is not filtered accordingly.​ | | 355825 | - | ​​If you use `Page Layout as JSON` component, the `Could not find method: Process` error appears for a page with the JSON layout. | 539143 | 355892 | - | ​​An SXA datasource selection dialog overrides the default dialog for non-SXA sites without exposing the full functionality required to complete the task. | 539268, 540792 | 355958 | - | A facet filter will not display the `Show more` link when the configured threshold is higher than or equal to the number of available options.​​​ | | 359693 | - | ​​If the database is not specified in the site definition item​​​, pages will not load. | | 359755 | - | Depending on the page structure, the `Search Results` overlay can cover the content of the entire page rather than being limited to the `Search Results` component.​​​ | | 359763 | - | ​​If a checklist filter is added to a page, Creative Exchange creates facet classes. | | 360198 | - | Performance is degraded due to unnecessary per-request regular expression instantiation.​​ | | 360478 | - | ​​The `SXA Json Result` component does not respect configured SXA Indexes. | 540785 | 360691 | - | The `Content Token` feature relies on fast queries that place a high load on SQL Server.​​ | 540893, CS0183392 | 360996 | - | ​​The logging mechanism exposes credentials in the Creative Exchange Live CLI​. | | 361067 | - | ​​The `Snippet` component does not work correctly with personalization. | 541281 | 362002 | - | If you add a composite component in Horizon, an error is thrown. ​​ | | 362517 | - | If you use the Solr search provider, facet filtering does not work if the facet value contains a space character.​​ | CS0170369, CS0173958, CS0182401 | 362577 | - | ​​The `Select the Placeholder Settings` dialog​ box does not contain any caching options. | | 363467 | - | ​​If you save item that references itself as a data source, a StackOverflow exception is thrown. | 541543 | 363683 | - | An accordion item cannot be expanded in `Edit` mode in Firefox.​​ | | 363698 | - | ​​The rendering parameters are empty in components in non-SXA sites when SXA is installed. | 540151 | 363994 | - | ​​In the Experience Editor, you cannot switch between `Shared` and `Final` layouts on non-SXA pages when the `Caching.DisableCacheSizeLimits` setting is set to `true`. | 540863 | 366025 | - | ​​The `General Link with Search` field produces an error if its source contains an SXA token. | 542597 | 366905 | - | In the Experience Editor, if you click `Publish`, `Site Themes`, the `Publish Item `wizard does not open.​​`````` | 542289, CS0169161 | 367283 | - | In SXA Storefront, you cannot remove facet filter values after a search operation has been performed.​​ | | 368445 | - | If a regular Sitecore `query:` is used on a data source for an SXA component, content search should not be triggered.​​ | 542030 | 368851 | - | On SXA sites, the rendering parameters in custom components are empty.​​ | 540151 | 368987 | - | ​​A responsive image that is nested in multiple sections does not render the `src` attribute. | 543089, 543152, CS0169946, CS0176478, CS0178218, CS0180226 | 369204 | - | When you update the rendering variants on a shared site in a non-English version, the content on the page on the non-shared site that uses the same variant does not change.​​ | 543270, CS0170055 | 369628 | - | If the default personalization rule is set to `Hide`, you cannot select a rendering on a page.​​ | 542831, CS0169662 | 370056 | - | ​​If you duplicate a multilingual item that has clones or add another language version, multiple items are created. | 543265 | 370654 | - | An accordion section cannot be collapsed in Edit mode after you click the `Open the item for editing` button.​​ | | 370765 | - | Buckets created within SXA sites do not adhere to the global bucket rules.​​ | CS0169464 | 371091 | - | Composite datasource subitems in different language remain locked when the content page is unlocked.​​ | CS0168926 | 371166 | - | If you clone a site, the item references in versioned fields are not updated for languages other than `en`.​​ | CS0170375 | 371168 | - | The Experience Editor does not show the variant preview for SXA renderings if you enable the `SelectVariation` processor in the `Sitecore.ContentTesting.Mvc.config` file on a CM server.​​ | CS0169216 | 371515 | - | ​​If you add an HTML snippet to a page and do not publish its data source, the page page throws an error when you try to view it. | CS0170298 | 373034 | - | ​​Unexpected ANSI characters appear in a rendered on a page when you use `Add This component`. | CS0174850 | 373588 | - | SXA `query:` data sources are not fully handled by SXA in the `parseDataSource` pipeline and this causes the platform to misinterpreting them as content search queries.​​ | CS0168943 | 373937 | - | ​The `Target Hostname` is used to request the static error page. It should be used only to generate links on the page. ​​ | CS0170303 | 374131 | - | If you use SXA redirects, the language is stripped from the URL.​​ | CS0175013 | 374202 | - | ​​Creative Exchange throws an exception during Export/Import if the exported page contains a `Splitter` rendering​. | | 374429 | - | A race condition in the `SxaSiteProvider` can throw an error.​​ | | 374769 | - | If you duplicate a multilingual item without an English version, the item is not created in the delegated area.​​ | CS0169861 | 375519 | - | ​​If you clone an item, the clone is not created with all the same language versions as the original item​. | | 375964 | - | If you use a snippet data source as a template that should be copied when used, the grid settings for embedded components are not correctly applied.​​ | CS0175096 | 376681 | - | ​​An `AmbiguousMatchException` can be thrown when searching SXA on indexes. | CS0168956 | 377565 | - | ​​If the `HTML Cache` content is cleared for a site for the `master` database before the `web` database, the visitor's cache is not purged. | CS0174442, CS0177798 | 378032 | - | ​​The `Html tags` of a rendering variant are not rendered as self-closing tags. | CS0176121 | 378983 | - | If a URL contains double quotes, an `Illegal characters in path` exception is thrown.​​ | CS0175687, CS0175687 | 379395 | - | ​​If you use a component rendering variant with snippets, the presentation details are cleared. | CS0176055 | 380154 | - | ​​A form created with Sitecore Forms cannot be submitted from an SXA overlay. | CS0175936 | 380732 | - | ​​If the snippet grid control properties are empty, they are not copied. | CS0175096 | 381181 | - | `DateTime field` are rendered incorrectly in components that are embedded in composite components.​​ | CS0177735 | 384879 | - | ​​A Scriban rendering variant field does not wrap the template content in a tag field if it is defined. | CS0178207 | 385842 | - | If an item contains a component with a data source that is defined as a query, publishing the item with its related items will fail.​​ | CS0178105 | 387129 | - | The Creative Exchange Scriban watcher freezes if you try to upload an empty `.scriban` file.​​ | | 387695 | - | A JSS app hosted within an SXA tenant shows the `Wireframe` theme mock image instead of the original image.​​ | CS0177912 | 387966 | - | If the `Show the Personalization Section` application option is enabled, If you click the `Edit style and behavior of the component` button, it produces a `NullReferenceException`.​​ | CS0178361 | 388700 | - | When a `Flip` control without any `Flipside` subitems is rendered, an exception occurs.​​ | CS0178997 | 390024 | - | ​​​The SXA Media component is hard-coded to use the http protocol and this prevents images from loading over https from YouTube. | CS0179302 | 390163 | - | ​​An `Accordion` component does not expand correctly if it is embedded within another accordion. | CS0178126 | 390812 | - | ​​The size calculation logic of JSON renderings is not correct and this causes a memory leak when they are stored in the HTML cache. | CS0179059 | 390898 | - | Applying translations or importing content for a JSS item can fail for languages other than `en`.​​ | CS0179257 | 391288 | - | ​​The Scriban template sc_placeholder function does not render the placeholder as an SXA dynamic placeholder. | CS0179521 | 391747 | - | ​​A request to the `Sitemap.xml` page sometimes results in a 404 HTTP error after application restart. | CS0174956 | 393910 | - | ​​If you personalize a composite component, the original data source is always shown. | CS0180170 | 393992 | - | Autocomplete does not work for the `Location Finder` component in an overlay. ​​ | CS0179584 | 394303 | - | ​​An incorrect URL is rendered in the `OpenGraph og:url` meta tag when the `TargetHostName` is set. | CS0181130 | 395328 | - | ​​The SearchService switches context to the `shell` site and this can result in incorrect search operations in a scaled environment. | | 395907 | - | A tag search returns no results if there is more than one space in the tag name.​​ | CS0180747 | 397090 | - | Unversionable media items are uploaded in the current site language and not in the current item language.​​ | CS0181207 | 397673 | - | ​​If a query contains a large number of characters there is a long response time. | CS0181367 | 397871 | - | In the Experience Editor when you use Internet Explorer 11, you cannot change personalization conditions before saving the item.​​ | CS0181713 | 398923 | - | The patch for the event handler for the `publish:end` and `publish:end:remote` event refers to an old platform handler and this can cause the processors to execute in the wrong order.​​ | CS0182090 | 399584 | - | ​​Search rule boosting does not work for certain condition parameters. | CS0181247 | 400929 | - | Rendering Variant tokens are not resolved properly in the variant field's data attributes.​​ | CS0181851 | 401296 | - | If a page contains multiple `Search Results` components and one of these components exhausts the available results, the `Load More `button disappears.​​`` | CS0184033 | 405817 | - | Model iterator notation does not work in the data attributes of a variant field. ​​ | CS0182218 | 401400 | - | If a facet value contains ampersands or commas, it breaks the filtering in `Filter (Checklist)` and `Aggregated Facet Filter`.​​ | CS0181191 | 401465 | - | ​​A carousel can render an empty `field-slidetext` tag​. | CS0182116 | 401795 | - | ​​​The `getRootSourceItems` pipeline processor returns the site's virtual folder and not the Media Library hosted folders. | | 402015 | - | If the root of the Media Library has been added to a virtual media folder of the site that is being edited, the `Open Media` dialog causes an error.​​ | | 402343 | - | If personalization is applied with a mix of local and site/global data sources, SXA personalization is not applied and a Solr error is logged.​​ | CS0182062 | 402415 | - | If you duplicate an item with a child that is a master for a Delegated Area, multiple child items are created in the Delegated Area.​​ | CS0182611 | 403775 | - | ​​If `Read` access to the Home item is denied to anonymous users, the `Page not found` error page may not be available to them. | CS0182364 | 404072 | - | If you enter a white-space in an accordion headline, it causes the focus to escape from the field.​​ | CS0183302 | 404970 | - | ​​Cached content tokens do not take the language version into account.​ | CS0183392 | 406854 | - | ​​The media folder validator interferes with the installation of SPE packages when SXA sites are already created on a Sitecore instance. | | 407143 | - | ​​The predicted text in a search box changes to the typed text if you move the focus from the search box to any part of the page. | CS0183884 | 405500 | - | Content Tagging requires the new `OpenCalais` provider URL​​. | | 420924 | - | A new init command has been added to the CLI that creates the files required by Creative Exchange Live in a theme that didn't have them already.​​​ | | 403658 | - | ​​In the Search box, the predictive text changes to the typed text when you move the focus from the Search box to any other part of the page. | CS0183884 | 405500 | - | ​​The `getAttributeTokenValue` pipeline does not support `Number` fields​. | CS0183306 | 405564 | - | A `Move item` operation that is performed in a `Delegated Area` is not reflected in its target.​​ | | 407101 | - | ​​If a page contains multiple `File List` components, the pagination for the `File List` components is empty. | CS0181350 | 407445 | - | ​​If you duplicate a page that contains a component, it creates versions in every available languages. | CS0184356 | 407685 | - | ​​The `Edit the placeholder settings `dialog does not show the renderings that are assigned to the placeholder.`` | | 408518 | - | If you add a Test variation to a composite component​, a `NullReferenceException` occurs.​​ | | 408717 | - | ​​If a custom processor modifies a newly created item in the `item:created` event, an exception occurs in an SXA processor. | CS0184998 | 409554 | - | ​​In a JSS SXA site, the `JSS Dictionary` is not based on the `Dictionary Domain` template. | CS0184250 | 409778 | - | The `JSS Dictionary Domain` is referenced by name rather than by its GUID​.​​ | CS0184250 | 409779 | - | ​​JSS Dictionary translation does not work. | CS0184250 | 409780 | - | A link that is wrapped around a Rendering Variant​ Image has an incorrect URL if the Image is under a section.​​ | CS0185108 | 410171 | - | ​​If you use personalization rules on partial designs, a `NullReferenceException` occurs. | CS0183779 | 410869 | - | ​In the Content Editor, ​if you preview a page, it redirects you to the desktop. | CS0183856, CS0191868, CS0197029, CS0200232, CS0215861, CS0183447, CS0180395 | 355817 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1010/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1010/Release_Notes.md deleted file mode 100644 index 1933eb206..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1010/Release_Notes.md +++ /dev/null @@ -1,145 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1010/Release_Notes ---- - -**February 2021 – released Sitecore Experience Accelerator 10.1.0** - -Sitecore Experience Accelerator (SXA) enables parallel work streams (content, creative design, UX, coding) to not only reduce the time required to produce a website, but also improve the quality by allowing all contributors to validate each other's contributions. SXA provides reusable user experience layouts and components that are fully integrated into the Sitecore editing experience. - -## Highlights - -- You can now edit the component size and grid parameters in the Horizon RHS panel. -- You can now edit the component size and breakpoint properties in the Horizon RHS panel when you select a component. -- You can now edit the relevant component parameters in the Horizon RHS panel. -- You can now use a range of controls to edit component styles in the Horizon RHS panel. -- You can now edit the `Dropdown/Selector` rendering parameter fields in the Horizon RHS panel. -- You can now edit the `Checkbox` rendering parameter fields in the Horizon RHS panel. -- You can now leverage the automated selection and creation of data sources for SXA components in Horizon. -- The icons for OOTB components have been refreshed. -- You can now configure a component so that it's placement on a page will also result in the inclusion of an additional theme. -- You can now add page branches to sites and create pre-assembled pages that can be modified by an editor. -- HTML includes allow you to add HTML snippets into the page code when the theme that contains the HTML include is used on a page. -- The `SXA Placeholder Settings` system folders are now based on the `Placeholder Settings Folder` data template. - -## New feature/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | You can edit the component size and grid parameters in the Horizon RHS panel. | | 410984 | - | You can edit the component size and breakpoint properties in the Horizon RHS panel when you select a component. | | 410990 | - | You can edit the component parameters in the Horizon RHS panel. | | 411005 | - | You can use a range of controls to edit component styles in the Horizon RHS panel. | | 411009 | - | You can edit the `Dropdown/Selector` rendering parameter fields in the Horizon RHS panel. | | 413799 | - | You can edit the `Checkbox` rendering parameter fields in the Horizon RHS panel. | | 413803 | - | You can now leverage the automated selection and creation of data sources for SXA components in Horizon. | | 413822 | - | The Icons for OOTB components have been refreshed. | | 421518 | - | ​​​You can now configure a component so that it's placement on a page will also result in the inclusion of an additional theme. | | 428381 | - | You can now add page branches to sites and create pre-assembled pages that can be modified by an editor. | | 431855 | - | ​​​HTML includes allow you to add HTML snippets into the page code when the theme that contains the HTML include is used on a page. | | 435091 | - | The `SXA Placeholder Settings` system folders are now based on the `Placeholder Settings Folder` data template. | CS0183879 | 405106 | - | The `XA.cookies` API has been extended with the ability to control the `SameSite` cookie attribute. | CS0183766 | 405339 | - | ​​​`Port`, `scheme`, and a number of other site properties have been added to the site definition item. | | 410937 | - | ES6+ support has been added for Creative Exchange Live tasks. | | 415667 | - | The `jQuery` and some other JS libraries have been updated. | CS0187305 | 416115 | - | ​​​Search service parameters are now passed to the `processSearchItems` pipeline as an additional QueryModel property. | | 416536 | - | The `Galleria` library has been updated. | | 422396 | - | ​​​Creative Exchange now informs the user when a page fails to render during the export process. | | 423698 | - | The redirect item now supports anchors. | | 428326 | - | The `GenerateAssetLinks` hash key now contains different values for different languages. | | 428706 | - | ​​​​The ​​​`media_url` Scriban extension can now retrieve a public link for a file that is stored in Content Hub. | | 430429 | - | The `LINQ to Twitter` library now supports long tweets. | CS0197445 | 443990 | - | Only rendering parameters with the editor implementation are shown in the RHS panel in Horizon. | | 447823 | - -## Deprecated - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​​The `Livefyre` component that was previously marked as obsolete has now been completely removed from SXA. | | 438216 | - | The `Field Editor` component has been deprecated and is no longer added to newly created sites. The component will be completely removed in a future release. | | 441676 | - | The `Flash` component has been deprecated and is no longer added to newly created sites. The component will be completely removed in a future release.​​​ | | 444954 | - | SXA no longer uses fast query as is has been deprecated. | | 446125 | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | The `Create a tenant` and `Create a site` dialogs do not indicate that the process has completed. | | 247276 | - | ​​​The sitemap does not work when the `enforceVersionPresence` attribute is set to `true` in the configuration files. | CS0156151, CS0195318 | 321854 | - | You cannot perform on page editing for nested composites. | | 323386 | - | ​​​Redirect maps do not work correctly when `languageEmbedding` is enabled. | CS0156473, CS0188345 | 328488 | - | The `Gallery` component does not work with Content Hub. | | 349290 | - | ​​​A race condition can occur during server startup that causes SXA sites to not be loaded to the SiteCollection. | | 363427 | - | ​​​When you use the Workbox, a `Method WorkflowCompleteStateItemCount not found` error cn occur. | CS0180277, CS0182605, CS0184180 | 399036 | - | A carousel without any slides displays errors in the browser console. | | 407650 | - | ​​​If you are redirected to a page without a layout and if `RequestErrors.UseServerSideRedirect` is enabled, an `InvalidOperationException` can occur. | CS0185551, CS0189650 | 410213 | - | If a partial design is included multiple times through inheritance, renderings are also included multiple times. | | 413773 | - | In Google Maps, if you only specify a single POI, the initial zoom level is not applied.​​​ | CS0185324, CS0192055 | 414166 | - | ​​​In the Experience Editor, non-SXA sites can be resolved incorrectly​. | CS0186908 | 415282 | - | A `Tabs` rendering can "steal" the focus from the other renderings on the page. | CS0186645, CS0193703 | 415007 | - | ​​​In the Experience Editor, if you try to select an image, it does not respect its component-configured source. | CS0186267 | 416154 | - | Spaces in links are replaced with `plus` characters. | CS0187279 | 416301 | - | ​​​The `Image` component is rendered as empty if you remove a data source. | | 416453 | - | ​​​If there is no `Forms` folder, the `Setup Security` script fails​. | CS0186513 | 416609 | - | If there are notifications in the Experience Editor, the expander on the SXA toolbox disappears. | CS0187396 | 417318 | - | ​​​In the Experience Editor, if the user does not have access to the English language, the `Select media` dialog displays no results. ​ | CS0186321 | 417364 | - | If you publish a partial design that contains an `Accordion` component, it does not clear the cache on the CD server. | CS0184303 | 417520 | - | ​​​If you install a Sitecore package that triggers the `item:moving` event, the `Virtual Media Folder Validator` can throw a `NullReferenceException`. | CS0187981, CS0196761 | 418783 | - | ​​​If you make a clone of a cloned item, for which the original item has been deleted, an error occurs. | | 419613 | - | ​​​If you unlock a page, it does not unlock the datasource item that belongs to the page partial design. | CS0186126 | 420715 | - | If you use Creative Exchange Live, the timestamp for a `pre-optimized-min` file is not changed if you change the content of the file. | CS0194532 | 420759 | - | ​​​Scriban variants that are nested under a section in a variant definition cannot use the `o_geospatial` object. | CS0189047 | 421111 | - | ​​​In the Japanese translation, in the `Sort Order` field, the default value is incorrect. | CS0187853 | 421424 | - | ​​​If you preview an item that is not in the root path, it throws a null reference exception. | CS0189401 | 421843 | - | You cannot install a module by selecting the `Site Setup` item for that module and then in the context menu, clicking `Scripts`, `Install Site Module`. | CS0190056 | 422157 | - | ​​​If the `Associated Content` for a site is set to another site and you choose a page from this site in the Search results, you are redirected to the `not found` page. | | 422470 | - | ​​​If the Sitecore instance is behind an Azure CDN, the URL of Gallery images is not properly constructed​. | CS0189882 | 422509 | - | ​​​If a custom page template is under the SXA `Page` template, some modules do not contain the list of available modules​. | CS0188912 | 423470 | - | If there is a heavy load, a race condition occurs for Scriban based rendering variants. | | 423630 | - | ​​​If you deselect some areas in the `Create module` dialog, it can cause the script to stop running. | | 423979 | - | ​​​Redirect maps do not work correctly when `languageEmbedding` is enabled. | CS0188345 | 424148 | - | If you use Azure search and no results are returned, the `Checklist Filter` is not cleared.​​​ | CS0190205 | 424203 | - | If a shared Page Design is used on another site, some additional wrappers are rendered​. | CS0190081, CS0193291 | 424314 | - | ​​​Linkable sites can appear twice in the `Select link` dialog. | CS0190185 | 424442 | - | ​​​The signature of a partial design from shared sites is included in the `Bootstrap 4` placeholder wrapper. | CS0190363 | 425148 | - | ​​​A user can edit the content of a `Page Size` component on the page when it is added to a partial design. | | 425511 | - | In the Experience toolbar, you cannot change the rendering variant of a page until the page is saved. | CS0191080 | 425741 | - | ​​​The `Create JSS tenant` dialog does not indicate that the process has ended. | | 426677 | - | ​​​If you preview an item from the Content Editor, SXA only resolves the sites by their hostname​. | CS0189321 | 430538 | - | ​​​If the `Sitecore.Publishing.Service.ContentAvailability.config` file is enabled, SXA interferes with the list import process in List Manager​. | CS0191833 | 431178 | - | If you edit a composite component on a website and the `Enable Web Edit` setting is set to `false`, the `Failed to load resource: the server responded with a status of 401` error is displayed.​ | CS0190314 | 428783 | - | ​​​If you remove a slide from a carousel and republish it, the cache is not cleared correctly​. | CS0186197, CS0193283 | 431853 | - | ​​​If you add a custom module to a site, the `The item name "" is already defined on this level` exception occurs​. | CS0193154, CS0193940 | 432170 | - | ​​​If a scriban template is changed, the cache is not cleared for all languages. | CS0193070 | 432279 | - | A page does not inherit placeholder settings defined in a Snippet. | CS0193557 | 432703 | - | The SXA `Search Box` component suggestions pull excessive data from the Azure Index.​​​ | CS0189465 | 431295 | - | Parallel publishing of a site can throw an exception. | CS0193714 | 435136 | - | The `Navigatio` component retrieves more items than necessary while rendering and this degrades performance.​​​ | | 432329 | - | Parallel publishing of a site can throw an exception. | CS0193714 | 435136 | - | ​​​When retrieving optimized links in the Asset optimizer, performance is not optimal. | | 436712 | - | On a JSS site, the standard values of rendering parameters are not returned by the Layout Service. | CS0194308 | 436915 | - | When you open the Experience Profile in a Sitecore instance with SXA installed, it causes a server error.​​​ | | 436943 | - | The `Carousel` component causes a console error in the browser when a carousel is not present on the page. | CS0195048 | 437580 | - | If you remove a shared site from a tenant, broken links are left on the tenant item.​​​ | | 439839 | - | The `GetPageStructurePlaceholderChromeData` and `GetSplittersPlaceholderButtons` processors make excessive calls to `Sitecore.Data.Items.ItemVisualization.GetRenderings(...)`. | CS0193146 | 437336 | - | ​​​The SXA search box and filter does no​t work with the Japanese & Chinese languages. | CS0194647 | 438827 | - | If you use a keyboard, you can only ​focus only on the first tab of the accordion. | | 440144 | - | ​​​If you edit an RTE field that contains a link to an overlay pop-up, the overlay pop-up does not work. ​ | | 440310 | - | When you start a Sitecore instance a race condition can occur in the code that handles dynamic placeholders. | CS0189511 | 439063 | - | ​​​An XSS vulnerability in the Range Slider component has been fixed. | CS0196472 | 440327 | - | If you use the `Edit style and behavior of the component` button to edit the parameters of a rendering, the value in the `Image` field of the rendering disappears. | CS0193488 | 441864 | - | ​​​The `Select the Associated Content` dialog can be inactive because of the specified datasource template. | CS0197166 | 443043 | - | The `General Link` dialog displays the content tree in English when you view the Japanese version of the item. | CS0193969 | 441675 | - | ​​​In the `Gallery` component​, the `Vimeo` preview thumbnail is rendered as an HTTP link instead of an HTTPS link. | | 444554 | - | If you create an item in a delegated area under an item that has versions in multiple languages, a `DuplicateItemNameException` is thrown​. | CS0197538 | 443800 | - | If you click the `Personalization` button on a rendering that is a part of a partial design, a `Post condition failed` error occurs.​​​ | CS0194676 | 436611 | - | Favicon links include the server URL. | CS0198317 | 444561 | - | In the `sitemap.xml` file, SXA does not respect the default language of the site​. | CS0195816 | 445369 | - | An additional invisible Unicode character ​is present in the `Site selector` component. | CS0198978 | 445584 | - | The SXA `query:` data sources are not properly handled by the `parseDataSource` pipeline​. | CS0197184 | 445626 | - | The same cached nested composite rendering appears on every page. | CS0197593 | 446792 | - | If you use `SXA Login` and `MVC Form` renderings on the same page, a `System.Web.Mvc.HttpAntiForgeryException` can occur. ​ | CS0199193​​​ | 447436 | - | The `sitecore\admin` user is used for JSS Import instead of the expected `sitecore\JssImport`. | | 435266 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/11/Sitecore_Experience_Accelerator_11_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/11/Sitecore_Experience_Accelerator_11_Initial_Release/Release_Notes.md deleted file mode 100644 index 5383a3a62..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/11/Sitecore_Experience_Accelerator_11_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,129 +0,0 @@ ---- -title: "Release notes - Sitecore Experience Accelerator 1.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/11/Sitecore_Experience_Accelerator_11_Initial_Release/Release_Notes ---- - -**October 2016 – released Sitecore Experience Accelerator 1.1 (rev. 161004)** - -The Sitecore Experience Accelerator (SXA) enables parallel work streams (content, creative design, UX, coding) to not only reduce the time required to produce a website, but also improve the quality by allowing all contributors to validate each other's contributions. SXA provides reusable user experience layouts and components, while fully integrating into the Sitecore editing experience. - -- Users can create pages and enter content while running the creative design process in parallel. -Site architects can create a wireframe version of the website within Sitecore.- Content authors and UI designers can work simultaneously on the wireframe site. -- Content authors can enter real content into the wireframe environment. -- UI designers can work on an exported version of the wireframe site using their favorite tools and the Experience Accelerator Creative Exchange synchronizes the UI design back into Sitecore. - -SXA enables back-end developers to work on integration with external systems and custom components while content authors and creative designers are working in their areas at the same time. - -## New feature/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​Creative Exchange now supports virtual folders.​ | - | - | - | ​Thumbnails for video and media links parameters are now supported.​ | - | - | - | ​Tag facet configuration is now supported.​ | - | - | - | ​Sorting for non-integer facets is now supported.​ | - | - | - | ​Rendering variants have been updated and now support target attributes.​ | - | - | - | ​Multisite linking has been improved.​ | - | - | - | ​Sitemap behavior has been improved.​ | - | - | - -## Breaking changes - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​Annotations have been renamed to Sticky Notes.​ | - | - | - | ​The compliancy repository has been refactored for better consistency.​ | - | - | - | ​The tabs component has been refactored to support a flexible styling layout.​ | - | - | - | ​Editing projects have been refactored to resolve issue with the splitter (columns).​ | - | - | - | ​Search has been refactored for consistency with search filter renderings.​ | - | - | - | ​Redundant members have been removed from Multisite projects.​ | - | - | - -## Resolved issues - -The following issues have been resolved: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​SXA 1.0 does not include translations for the English text in the user interface. SXA 1.1 will include translations for German, Japanese, and Danish. ​​​ | - | 2388 | - | SXA does not refresh the content tree in the Content Editor after creating a new site/tenant.​​​​​​ | - | 2779 | - | ​Creative Exchange creates duplicated media assets when you import an exported theme. ​ | - | 2505 | - | ​The Experience Editor only displays the Toolbox for non-admin users after the page is reloaded. ​ | - | 2736 | - | ​The Authentication rendering does not reflect the login state. ​ | - | 2208 | - | ​When you add a Rich Text rendering on a page and then open the Rich Text Editor and insert a Sitecore media item, the Insert Media Item window does not respect the configured media root. ​ | - | 2489 | - | ​The Experience Editor raises a “URI malformed” error when you save a page that contains a Rich Text rendering that includes a percent character (%) in the content. ​ | - | 1190 | - | ​The Current language filter in Search Result properties does not restrict the search results to the current language when it is enabled. ​ | - | 2773 | - | ​When you choose a long name for a page design, the Page Design menu in the Experience Editor introduces line breaks, which makes it difficult for you to choose the page design. ​ | - | 2756 | - | ​The Search results properties form in the Experience Editor does not provide ascending and descending options in the Default sort order field. ​ | - | 2768 | - | ​The Experience Editor sometimes presents the edit frame for a rendering in an inappropriate location relative to the rendering. ​ | - | 2758 | - | ​In some situations, after adding a rendering to a page and saving, then choosing the ‘Open an item for editing’ option in the inline toolbar, the browser asks whether you want to reload the site. ​ | - | 2793 | - | ​When you add a Map component to a page and then associate a data source in the Experience Editor, in the Select associated content dialog, the dialog displays the error and does not accept the selection. ​ | - | 2788 | - | ​SXA reports an error when you clone content in the Select associated content dialog in the Experience Editor. | - | 2764 | - | ​SXA does not provide appropriate configuration items to allow you to select configuration for composite components using the Select the Associated Content dialog in the Experience Editor. ​ | - | 2795 | - | ​SXA reports an error when you add a Results Variant Selector component to a page. ​ | - | 3020 | - | ​The SXA installation package does not include an example Solr config file.​ | - | 3265 | - | SXA Controllers retain memory causing performance of the published website to decline with time. | - | 3255 | - | ​User Interface text translations from English to other languages are missing. | - | 2798 | - | ​The ​​Sticky Note component is incorrectly named Annotation. | - | 2800 | - | ​The Social Media Share toolbar displays a JavaScript error and fails to work when added to a page. | - | - | - | ​The map component ignores the zoom settings in the correspondng configuration item. | - | 3043 | - | The Select associated content dialog shown for a Flash component ​does not allow the user to select a content item. | - | 2792 | - | ​​A variant rendering based on the Map component ignores POIs when created by the user. | - | 2941 | - | ​The Creative Exchange does not export index.html with the website pages. | - | 3601 | - | ​The Tag Cloud component does not return any results. | - | 3310 | - | ​The Facebook Comments component does not display a Facebook comments input pox. | - | 3283 | - | ​​​​The Event Calendar component raises an error when you refresh any page. | - | 3299 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/11/Sitecore_Experience_Accelerator_11_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/11/Sitecore_Experience_Accelerator_11_Initial_Release/index.md deleted file mode 100644 index e3c94b3d4..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/11/Sitecore_Experience_Accelerator_11_Initial_Release/index.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Sitecore Experience Accelerator 1.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/11/Sitecore_Experience_Accelerator_11_Initial_Release.aspx ---- - -The Sitecore® Experience Accelerator provides reusable, templated UX layouts and components to help you get up and running quickly. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Experience Accelerator for 8.1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/11/Sitecore%20Experience%20Accelerator%2011%20Initial%20Release/Secure/Sitecore%20Experience%20Accelerator%201.1%20rev.%20161004%20for%208.1.zip) | Download Sitecore Experience Accelerator 1.1 for use with Experience Platform 8.1 | - | [Sitecore Experience Accelerator for 8.2](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/11/Sitecore%20Experience%20Accelerator%2011%20Initial%20Release/Secure/Sitecore%20Experience%20Accelerator%201.1%20rev.%20161004%20for%208.2.zip) | Download Sitecore Experience Accelerator 1.1 for use with Experience Platform 8.2 | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Experience_Accelerator/11/Sitecore_Experience_Accelerator_11_Initial_Release/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known Issues](https://kb.sitecore.net/articles/196733) | Choose this link to access the Sitecore Knowledge Base. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/11/Sitecore%20Experience%20Accelerator%2011%20Initial%20Release/Secure/SXA-1.1-Installation-Guide.pdf) | The installation procedure for the Sitecore Experience Accelerator. | - | [Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/11/Sitecore%20Experience%20Accelerator%2011%20Initial%20Release/Secure/SXA1.1-Upgrade-Guide.pdf) | To upgrade from a previous SXA version please follow the instructions in this guide. | - | [Documentation](https://doc.sitecore.net:443/en/Products/Sitecore_Experience_Accelerator/11) | Documentation for Sitecore Experience Accelerator. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/12/Sitecore_Experience_Accelerator_12_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/12/Sitecore_Experience_Accelerator_12_Initial_Release/Release_Notes.md deleted file mode 100644 index a2fb60082..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/12/Sitecore_Experience_Accelerator_12_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/12/Sitecore_Experience_Accelerator_12_Initial_Release/Release_Notes ---- - -**December 2016 – released Sitecore Experience Accelerator 1.2 (rev. 161216)** - -The Sitecore Experience Accelerator (SXA) enables parallel work streams (content, creative design, UX, coding) to not only reduce the time required to produce a website, but also improve the quality by allowing all contributors to validate each other's contributions. SXA provides reusable user experience layouts and components, while fully integrating into the Sitecore editing experience. - -## New feature/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​SXA now includes with Azure Webapps compatibility. | | | - | SXA now includes Azure Search compatibility. | | | - | Creative Exchange has been refactored to:  | | | - | Use pipelines for customization | | | - | Use the provider model for storage  | | | - | Improve performance | | | - -## Breaking changes - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Creative Exchange has been completely ​reimplemented. Component design has been changed in order to make it more transparent and friendly for the extension.​ | | | - | The taxonomy feature has been updated to support the configuratio of implicit tags.​ | | | - | The Rendering variants component has been updated in order to support multilist fields.​ | | | - | The set of components has been refactored due to updates in the MarkupDecorator component​. | | | - | The Event calendar component has been updated to the latest version of the FullCalendar plugin.  | | | - -## Deprecated/removed - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Livefyre has been removed from available components (the Livefyre Community Comments service is shutting down in February 2017). | | | - -## Resolved issues - -The following issues have been resolved: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​The Flip component is not visible ​inside the Tab component in the Experience Editor and ​​normal mode.​​ | | 4543 | - | ​Creative Exchange does not work properly under the HTTPS​​​​​ protocol. | | 4486 | - | Export to a folder does not work​​​ in Creative Exchange. | | 4484 | - | ​​Users cannot​​ access ​media items directly​.​​ | | 4320 | - - | ​SXA is not compatible with .NET Framework 4.5.x​. | | 4269 | - | ​The Site Selector component does not work​ in the Experience Editor. | | 3851 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/12/Sitecore_Experience_Accelerator_12_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/12/Sitecore_Experience_Accelerator_12_Initial_Release/index.md deleted file mode 100644 index bf4745527..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/12/Sitecore_Experience_Accelerator_12_Initial_Release/index.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Sitecore Experience Accelerator 1.2 " -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/12/Sitecore_Experience_Accelerator_12_Initial_Release.aspx ---- - -The Sitecore® Experience Accelerator provides reusable, templated UX layouts and components to help you get up and running quickly. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Experience Accelerator for 8.1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/12/Sitecore%20Experience%20Accelerator%2012%20Initial%20Release/Secure/Sitecore%20Experience%20Accelerator%201.2%20rev.%20161216%20for%208.1.zip) | Download Sitecore Experience Accelerator 1.2 for use with Experience Platform 8.1 | - | [Sitecore Experience Accelerator for 8.2](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/12/Sitecore%20Experience%20Accelerator%2012%20Initial%20Release/Secure/Sitecore%20Experience%20Accelerator%201.2%20rev.%20161216%20for%208.2.zip) | Download Sitecore Experience Accelerator 1.2 for use with Experience Platform 8.2 | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Experience_Accelerator/12/Sitecore_Experience_Accelerator_12_Initial_Release/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known Issues](https://kb.sitecore.net/articles/196733) | Choose this link to access the Sitecore Knowledge Base. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/12/Sitecore%20Experience%20Accelerator%2012%20Initial%20Release/Secure/SXA-1.2-Installation-Guide.pdf) | The installation procedure for the Sitecore Experience Accelerator. | - | [Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/12/Sitecore%20Experience%20Accelerator%2012%20Initial%20Release/Secure/SXA-1.2-Upgrade-Guide.pdf) | To upgrade from a previous SXA version please follow the instructions in this guide. | - | [Documentation](https://doc.sitecore.net:443/en/Products/Sitecore_Experience_Accelerator) | Documentation for Sitecore Experience Accelerator. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/13/Sitecore_Experience_Accelerator_13_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/13/Sitecore_Experience_Accelerator_13_Initial_Release/Release_Notes.md deleted file mode 100644 index 85aa25422..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/13/Sitecore_Experience_Accelerator_13_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/13/Sitecore_Experience_Accelerator_13_Initial_Release/Release_Notes ---- - -**April 2017 – released Sitecore Experience Accelerator 1.3 (rev. 170412)** - -Sitecore Experience Accelerator (SXA) enables parallel work streams (content, creative design, UX, coding) to not only reduce the time required to produce a website, but also improve the quality by allowing all contributors to validate each other's contributions. SXA provides reusable user experience layouts and components, while fully integrating into the Sitecore editing experience. - -## Highlights - -- SXA now supports Bootstrap, Foundation, and 960GS CSS frameworks. -- The new SXA Data Modelling allows editors to compose and deliver JSON for Single-Page Applications (SPAs) or mobile applications. - -## New features/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | SXA now supports Bootstrap, Foundation, and 960GS CSS frameworks. | | 3312 | - | The new SXA Data Modelling allows editors to compose and deliver JSON for Single-Page Applications (SPAs) or mobile applications. | | 5608 | - | There is an Upgrade tool to help you upgrade from SXA 1.2 to SXA 1.3. | | 5148 | - | The Experience Editor now lets you manage component sizing and other responsive properties. | 4690 | | - | The Drag and Drop functionality has been improved and gives you a better indication of the drop location for nested placeholders. | | 4691 | - | SXA now lets you select a Grid System (Bootstrap, Foundation, or 960GS) per device, per site. | | 4746 | - | The `Base` and `Wireframe` themes are now grid agnostic and can be used with either Bootstrap, Foundation, or 960GS. | | 4751 | - | In the Experience Editor, the SXA Toolbar is now docked on the right rather than floating to better accommodate responsive layouts. | | 5452 | - | We have added JSON layouts and components for the new SXA Data Modelling. | | 5465 | - | SXA now supports Extensible Rendering Variants that allow you to create custom implementations of HTML/JSON renderings. | | | - | SXA now supports semantic HTML tags within a layout and supports semantic HTML tags in rendering variants. | | | - | You can now specify personalization rules on rendering variants. | | | - -## Breaking changes - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | A number of components, such as, `Page Structure`, `Search`, `Editing and Theming`, have been refactored to support the new grid paradigm. | | | - | The `Navigation` and `Taxonomy` features have been refactored to support the new Rendering Variants abstractions layer. | | | - | Rendering Variants has been refactored. An abstraction layer has been implemented to support various variants implementations. A JSON variants implementation has been introduced. | | | - | `Author Mode` has been removed from Creative Exchange. | | | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | SXA does not notify the user that Metadata Partial Design is required to insert a new Sticky Note. | | 4722 | - | SXA skips the flash data source when exporting with Creative Exchange. | | 4554 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/13/Sitecore_Experience_Accelerator_13_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/13/Sitecore_Experience_Accelerator_13_Initial_Release/index.md deleted file mode 100644 index 3022030a1..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/13/Sitecore_Experience_Accelerator_13_Initial_Release/index.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: "Sitecore Experience Accelerator 1.3" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/13/Sitecore_Experience_Accelerator_13_Initial_Release.aspx ---- - -The Sitecore® Experience Accelerator provides reusable, templated UX layouts and components to help you get up and running quickly. - -## Downloads - - | Resource | Description | - | --- | --- | - | [Sitecore Experience Accelerator for 8.1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/13/Sitecore%20Experience%20Accelerator%2013%20Initial%20Release/Secure/Sitecore%20Experience%20Accelerator%201.3%20rev.%20170412%20for%208.1.zip) | Download Sitecore Experience Accelerator 1.3 for use with Experience Platform 8.1 | - | [Sitecore Experience Accelerator for 8.2](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/13/Sitecore%20Experience%20Accelerator%2013%20Initial%20Release/Secure/Sitecore%20Experience%20Accelerator%201.3%20rev.%20170412%20for%208.2.zip) | Download Sitecore Experience Accelerator 1.3 for use with Experience Platform 8.2 | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Experience_Accelerator/13/Sitecore_Experience_Accelerator_13_Initial_Release/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known Issues](https://kb.sitecore.net/articles/196733) | Choose this link to access the Sitecore Knowledge Base. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/13/Sitecore%20Experience%20Accelerator%2013%20Initial%20Release/Secure/SXA%201.3%20Installation%20Guide.pdf) | The installation procedure for the Sitecore Experience Accelerator. | - | [Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/13/Sitecore%20Experience%20Accelerator%2013%20Initial%20Release/Secure/SXA%201.3%20Upgrade%20Guide.pdf) | To upgrade from a previous SXA version please follow the instructions in this guide. | - | [Documentation](https://doc.sitecore.net:443/en/Products/Sitecore_Experience_Accelerator) | Documentation for Sitecore Experience Accelerator. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/13/Sitecore_Experience_Accelerator_13_Update1/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/13/Sitecore_Experience_Accelerator_13_Update1/Release_Notes.md deleted file mode 100644 index 48e608cfd..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/13/Sitecore_Experience_Accelerator_13_Update1/Release_Notes.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/13/Sitecore_Experience_Accelerator_13_Update1/Release_Notes ---- - -**May 2017 – released Sitecore Experience Accelerator 1.3 Update-1 (rev. 170519)** - -Sitecore Experience Accelerator (SXA) enables parallel work streams (content, creative design, UX, coding) to not only reduce the time required to produce a website, but also improve the quality by allowing all contributors to validate each other's contributions. SXA provides reusable user experience layouts and components that are fully integrated into the Sitecore editing experience. - -## New feature/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​New site themes are now stored in the Themes branch in the Media Library. | | 4850 | - | Site and tenant security scaffolding provides an easy way to apply security roles to a SXA site. | | 5053 | - | The Column Splitter can now contain only one column​. | | 5199 | - | The Robots.txt cache in now flushed as part of publish​ing. | | 6575 | - | Error Handling has been added to scaffolding as a feature. | | 6673 | - | Grids now have their own editing themes so grid-specific editing functionality can be added​. | | 6774 | - | The performance of SXA page rendering has been greatly improved​​​ - in some cases by as much as 50%. | | 6825 | - -## Breaking changes - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | The `RenderContentToken` and `AssetInclude` types have been changed as a result of performance improvements.​ | | | - | The `StringExtenstions` type has been renamed as `SitecoreExtensions`. | | | - | The `GetVisibility` class has been removed as a result of usability improvements to the grid. | | | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | The Toolbox scroll bar UI is easily confused with the Page scroll bar. | | 3325 | - | ​The `DisableEditingOnInjectedRendering` processor breaks FXM functionality​. | | 6899 | - | ​The robots.txt cache is not cleared after a site publish.​ | 480809 | 6575 | - | ​SXA reverses the logic for appending sitemap URLs to robots.txt. | 480809 | 6484 | - | Pages exported by Creative Exchange have an additional `sxa-ce-exported` CSS class​. | | 6727 | - | ​JSON device is offered as a valid device for Creative Exchange.​ | 483306 | 6852 | - | ​The Styling button throws an error if a rendering is added in the Content Editor.​ | | 6866 | - | ​The Custom Variants for levels field cannot be saved for the Navigation component - Sitecore Experience Platform 8.1 only​.​​​ | | 6735 | - | The Facet Slider component does not show a value indicator after the first page loads.​ | | 5908 | - | The Checklist Filter component is case sensitive when filtering by query parameters​. | | 6872 | - | ​You cannot add an external link to an Image component.​ | 483062, 483491 | 6845 | - | ​The cyclic redundancy check fails if a page or a partial design has a container inside a container.​ | 484328 | 6707 | - | The Date filter component causes a JavaScript errors when used.​ | | 6900 | - | ​The show and hide toolbox buttons are scrolled with the page content.​ | | 7016 | - | ​The drop indicators are shown when the mouse pointer is near the component rather than near the drop point.​ | | 6722 | - | ​Sticky notes can behave unexpectedly.​ | | 5774, 6520, 6455, 5746 | - | SXA and WFFM both contain a core item with the same name and a different ID. | 478585 | 5713 | - | ​If a theme name contains dashes, it breaks the theme selection dialog​. | 482234 | 6675 | - | ​The Toolbox scroll bar can be confused with the page scroll bar.​​​​ | | 3325 | - | Search Box and Search Results do not work properly when alwaysIncludeServerUrl="true"​. | | 6446 | - | ​The Tag Cloud component generates incorrect links​​.​​ | | 6712 | - | The `Lookup Name Lookup Value` field works incorrectly in the Content Editor and in the Experience Editor. ​​​​ | 483409, 484211 | 7094 | - | ​Partial Design folders are not shown in the Partial Designs list​​​.​​ | 483925 | 7041 | - | The start search location for a Gallery component is incorrect in the `GalleriaTheme` field.​​​ | 481271 | 6470 | - | The ​Azure search provider sends latitude and longitude to the index in the wrong order.​​ | 484887 | 7170 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/14/Sitecore_Experience_Accelerator_14_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/14/Sitecore_Experience_Accelerator_14_Initial_Release/Release_Notes.md deleted file mode 100644 index 51a249447..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/14/Sitecore_Experience_Accelerator_14_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,54 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/14/Sitecore_Experience_Accelerator_14_Initial_Release/Release_Notes ---- - -**June 2017 – released Sitecore Experience Accelerator 1.4 (rev. 170623)** - -Sitecore Experience Accelerator (SXA) enables parallel work streams (content, creative design, UX, coding) to not only reduce the time required to produce a website, but also improve the quality by allowing all contributors to validate each other's contributions. SXA provides reusable user experience layouts and components that are fully integrated into the Sitecore editing experience. - -## New feature/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | SXA Data Modelling automatic page feeds - this feature supports the automatic generation of JSON feeds based on the current page layout. | | 7399 | - | ​SXA now contains site management tools. | | 6145 | - | Creative Exchange Live Mode instantly updates SXA themes as they are edited. | | | - | Rendering Variants are now available for Image, Image (Reusable), Link, Links List, Rich Text, Rich Text (Reusable), and Event List. | | 6147 | - | Site Manager for managing hostname mappings. | | 6859 | - | Tenant Exporter that you use to download a complete serialized tenant. | | 6915 | - | ​Language Manager that you use to add languages to a site. | | 6914 | - | Clone Site tool that you use to make independent copies of an SXA site. | | 6837 | - | The Basic theme has a new clean architecture. | | 6796 | - | ​SASS source files for base themes. | | 6570 | - | ​Restrictions about the available renderings can now be defined per placeholder.​ | | 4374 | - | The new SXA Designer role that ​​​can add renderings and create local datasources.​​ | | 6895 | - | The ability to choose themes for specific Page Designs​. | | 4373 | - -## Breaking changes - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​A number of components such as Composites, Events, Media, Navigation, Rendering Variants, Variants.Abstractions have been changed as a result of rendering variant improvements.​ | | | - | ​The search feature has been refactored to support Layout Services integration.​ | | | - | ​The unused `VisibilityClasses​` field has been removed from Grid feature. | | | - | ​​​A couple of abstract methods have been added to the SitecoreExtensions and Upgrade components.​ | | | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | You can create sites with the same name inside a single tenant​​.​ | | 7090 | - | When uploading images​, the user ​cannot change the destination. | 484663 | 7297 | - | Front-end sites​ are not presented correctly on mobile devices. | 484000 | 7288 | - | An aborted SXA version upgrade procedure keeps showing the user a "Done!" message​. | | 5823 | - | ​The Presentation/Page Designs folder template contains fields​.​ | | 6897 | - | ​The Map component ignores grids settings​. | | 5391 | - | ​If `languageEmbedding="always"`, the export package has the wrong structure​​​. | 481755 | 7089 | - | Redirect mapping under a map group does not work​. | 484818 | 7432 | - | ​After upgrading from SXA 1.2 to 1.3, the search query for Partial Designs is incorrect.​​ | 484929 | 7406 | - | Social features can cause a mixed mode error when https is enabled. | 484932 | 7388 | - | ​The Search Scope dropdown shows the scopes folders​. | 485233, 486962 | 7473 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/15/Sitecore_Experience_Accelerator_15_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/15/Sitecore_Experience_Accelerator_15_Initial_Release/Release_Notes.md deleted file mode 100644 index adb32c843..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/15/Sitecore_Experience_Accelerator_15_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,75 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/15/Sitecore_Experience_Accelerator_15_Initial_Release/Release_Notes ---- - -**October 2017 – released Sitecore Experience Accelerator 1.5 (rev. 171010)** - -Sitecore Experience Accelerator (SXA) enables parallel work streams (content, creative design, UX, coding) to not only reduce the time required to produce a website, but also improve the quality by allowing all contributors to validate each other's contributions. SXA provides reusable user experience layouts and components that are fully integrated into the Sitecore editing experience. - -## New feature/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | You can apply the presentation, styles, data sources, and rendering variants from a chosen site to the other sites within a tenant. | | 6154 | - | The UX of the `Component styling` field has been improved to facilitate easier selection of CSS classes.​ | | 6923 | - | The `Delegated areas` feature lets you share pages between multiple content trees through automatic content change and publishing operations​ pushing. | | 8565 | - | The `Wireframe` theme has been updated to take advantage of the functionality and maintainability of the `Basic 2` theme.​ | | | - | The scope of the `Layout` and `Style Experience` buttons' has been extended to include component behavior fields​. | | 8355 | - | You can now use environment-dependent site definitions to display sites differently on different servers.​ | | 8910 | - | The Creative Exchange has been extended for easier management of a large number of styles. A cleanup script has also been added to the Content Editor context menu to automatically organize imported classes into folders. | | 7948 | - | Support has been added for Sitecore 9.0​​. | | 7958 | - | You can refine your Page List queries by using Rules Engine rules to filter the results​.​ | | 7961 | - | The new multi-root tree list field type supports multi-site content. | | 8263 | - | The `Delete Tenant` and `Delete Site` scripts in the Content Editor context menu allow you to easily remove those SXA entities, and their associated assets and templates.​ | | 8492 | - | This release adds support for the Sitecore Forms 9.0 module. | | 8621 | - | The Content Editor contains a new theme with a context menu script. This has been automatically added to the site's available compatible themes.​ | | 8657 | - | SXA can now utilize the `SwitchOnRebuild` indexing providers by default. | | 8671, 8831 | - | The `Pagination` functionality now works with the `Event List` and `File List` components​​. | | 8923 | - | The `$name` value in a field is now treated as an empty value by the rendering variant that renders the field. This improves field handling after you have created the content. | | 9264 | - | There is a new custom search index for the SXA Search functionality​. | | 9265 | - | You can configure the Creative Exchange to ignore defined custom CSS classes within a configuration file.​ | | 9368 | - -## Breaking changes - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Support for Sitecore 8.1 has been removed​. | | 7960 | - | Version 8.1 is no longer supported and SXA now uses the 8.2 dependency injector functionality. The old pipeline has been deprecated and will be removed in a future version. | | 7990 | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | The Layout Service JSON output contains all the available fields. | | 8059 | - | The Sitemap generates with the incorrect priorities​.​ | 487190 | 7929 | - | Creative Exchange should not import the maintenance sxa-ce-exported class back​. | | 7968 | - | SXA stopped referencing the `Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll` file, so projects now utilize the latest version without further conflicts.​ | | 8063 | - - | The Browser title is HTML-encoded | 487867 | 8246 | - | The `Language Selector` does not respect the `languageLocation` attribute of the `LinkProvider`​. | 487996 | 8306 | - | Toolbox is empty if there were no available placeholders on the page. | 488569 | 8349 | - | The `Cannot modify cookies` error is shown when an MVC Form component is added to a page​. | 488557 | 8350 | - | Using the word "form" in a Partial Design name results in an inability to add components to it​. | 488558 | 8378 | - | A problem with the `IFrame` component​​​ has been fixed. | | 8489 | - | Every theme is exported if the `Basic2` theme is selected as the site theme | 491970 | 8502 | - | SVG images are broken when the `Wireframe` theme is selected​​. | 489233 | 8533 | - | Enabling the grid lines preview prevents field editing on components from `Partial Design` if they are embedded in a `Row Splitter`. | | 8624 | - | Search does not show any results if a site is viewed from a domain that doesn't match the site definition.​ | | 8638 | - | The `Description` field is absent from the `Video` rendering​. | | 8766 | - | SXA Controller renderings are now identified by their full Type name. This prevents name collisions with 3rd party components and solutions. | | 8827 | - | Creative Exchange may experience problems importing rendering data into languages other than the default​ language. | | 8848 | - | Creative Exchange can display an error when it reads links with non-web protocols, for example from an email or a mobile device. | 490592 | 8855 | - | Placeholder settings can not be applied to dynamic placeholders inside components, for example in Splitter components. | | 8864 | - | SXA's compatibility with EXM 3.5+​ has been restored. | | 8889 | - | SXA sites may cause exceptions in Sitecore and client applications​​. | 489215 | 8925 | - | The incorrect language could be displayed for an item when exporting and importing from Creative Exchange.​ | 491220 | 9142 | - | The `Media Library` folder of a website is copied twice when cloning the site within an Azure hosted environment​. | | 9238 | - | The Creative Exchange site import may sometimes result in a `Value cannot be null` error​. | 491253, 492294 | 9318 | - | Creative Exchange would not import the ID attribute of the `body` tag.​ | | 9404 | - | An error may appear when rendering the Twitter component​. | | 9419 | - | The Content crawler can go into an infinite loop when indexing pages with circular references within page renderings​. | | 9457 | - | The `Layout Service` has been updated to version 2.0​. | | 8414 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/16/Sitecore_Experience_Accelerator_16_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/16/Sitecore_Experience_Accelerator_16_Initial_Release/Release_Notes.md deleted file mode 100644 index aceee914d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/16/Sitecore_Experience_Accelerator_16_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,68 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/16/Sitecore_Experience_Accelerator_16_Initial_Release/Release_Notes ---- - -**December 2017 – released Sitecore Experience Accelerator 1.6 (rev. 180103)** - -Sitecore Experience Accelerator (SXA) enables parallel work streams (content, creative design, UX, coding) to not only reduce the time required to produce a website, but also improve the quality by allowing all contributors to validate each other's contributions. SXA provides reusable user experience layouts and components that are fully integrated into the Sitecore editing experience. - -## New feature/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | You can now use a wizard from the context menu to add a feature to a site after it is created.​ | | 10022 | - | You can now use a wizard from the context menu to add a feature to a tenant after it is created. | | 10023 | - | You can now use image, link, and text fields for tag attributes in rendering variants. | | 10029, 10589 | - | Rendering variants now support self-closing tags. | | 10176 | - | The `C​ookie warning` meta rendering is now called a `Privacy warning`. | | 10230 | - | The `Feature` and `Foundation` nodes now have module scaffolding to facilitate the creation of new SXA modules. | | 10329 | - | Tenant and site scaffolding input validation script support has been added to allow features to validate selected configurations in the dialog before scaffolding the site or tenant. | | 10400 | - | Tenant and site scaffolding post-setup script support has been added to allow features to perform additional actions after you create the site or tenant.​​ | | 10408 | - | The `SXA Rendering Copy` wizard lets you create customized versions of existing SXA components​. | | 8916, 8060 | - | You can now edit composite renderings directly on the page​. | | 8060 | - | The `G​allery` component supports rendering variants. | | 6916 | - | Feature authors can now provide theme extensions that extend the themes that are created by scaffolding scripts​. | | 7080 | - | Feature authors can provide theme extensions that will be included when you edit a site in `Wireframe` mode​. | | 7945 | - | You can extend rendering variant tags with custom data attributes. ​​ | 483832 | 7096 | - | Rendering variants let you add an editing frame as part of the variant definition. | | 7674 | - | Row and column splitters allow you to add and remove placeholders out of order. | 486925 | 7862 | - | R​ow and column splitters let you change the order of their placeholders​. | 486925 | 7862 | - | SXA now has a Google Analytics integration meta-rendering. | 488570 | 8332 | - | You can configure the search box to show Solr predictions rather than a list of results in its drop-down​. | 488567 | 8403 | - | Rendering variants use a markup that complies with the variant definition to render a field, even when the field is not present. | | 8409 | - | The `Row Splitter` markup allows for better adherence to the `Bootstrap` and `Foundation` grid guidelines by adding the appropriate row class. | | 8856 | - | The new ​`Splitter` components allow you to define pre-fabricated component groups to a page​. | | 8905 | - | You can now open the specific sections for `T​abs`, `Carousel`, and `Accordion` renderings when a page loads. | 491622 | 9008 | - | You can configure the range slider to show minimum and maximum value​​s. | 491624 | 9106 | - | The `Page Size` drop-down search rendering can show custom texts as values.​ | 491625 | 9107 | - | The `Page Selector` component renders an additional class that allows you to hide the component if page selection is not possible. | 491629 | 9108 | - | Additional styling facilitates the easier selection of multiple elements in the checklist filter.​ | 491632 | 9113 | - | The Checklist filter component now allows you to search by results count. | 491842 | 9129 | - | A page can be used as a data source for components inside composites to allow for ​rendering page fields in them​. | | 9534 | - | You can define URL language embedding on a per-site basis. | | 9619 | - | The `SEO Sitemaps` aggregate all the available sites under a single hostname, and support multiple languages | 494598 | 9788 | - | Page layout information is cached after merging with partial and composite rendering information.​ | 495528 | 9930 | - | Data source items can inherit from an additional template. This allows you to copy data source items from the `Global` folder to page data sources when the data source is used. | | 9984 | - | Site and placeholders now have component caching, configuration triggering, and support donut caching. | | 10009 | - | | | | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | There is a duplicated JSON tab in the `Select a Rendering` dialog for JSON device​s. | | 9557 | - | ​In the Experience Editor, SXA renders URLs for multisite instances with in​correct host names. | 493282 | 9564 | - | ​SXA shows ​JSON markup​ instead of HTML markup in the POI details. | 4933514 | 9600 | - | Composites do not work on mobile devices. | 497874 | 10372 | - | A user cannot add a new SXA site to a tenant that has an existing SXA site. | 493634 | 9573 | - | The `AssetBundler​` transforms CSS files incorrectly. This causes an error in the IE 9 browser. | 493971 | 9709 | - | The `Select Rendering` dialog has duplicate tabs when a user creates a folder that has the same name as a rendering. | 493911 | 9727 | - | ​You cannot change the file destination that you upload images​ to in the standard Sitecore `Select Media` dialog​. | 490622, 493310, 497544 | 8534 | - | Personalization does not work for composite rendering​s. | 488514 | 8647, 8459 | - | Two `Location Finder` components do not work​ on the same page. | 489467 | 8685 | - | Rendering variants do not work for renderings that are placed inside a composite​. | 495496, 492641 | 9501 | - | Search filters do not respect the `current language`​ setting of the `Search Results` component. | 494519 | 9532 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/16/Sitecore_Experience_Accelerator_16_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/16/Sitecore_Experience_Accelerator_16_Initial_Release/index.md deleted file mode 100644 index 649f8c8dc..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/16/Sitecore_Experience_Accelerator_16_Initial_Release/index.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: 'Sitecore Experience Accelerator 1.6' -description: '' -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/16/Sitecore_Experience_Accelerator_16_Initial_Release.aspx ---- - -The Sitecore® Experience Accelerator provides reusable, templated UX layouts and components to help you get up and running quickly. - - - - You are encouraged to use the latest Sitecore PowerShell Extensions 4.7.2 WebDeploy package as it contains important fixes and improvements. - - - -## Downloads - -| Resource | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | -| [Sitecore Experience Accelerator for 8.2](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/16/Sitecore%20Experience%20Accelerator%2016%20Initial%20Release/Secure/Sitecore%20Experience%20Accelerator%201.6%20rev.%20180103%20for%208.2.zip) | Download Sitecore Experience Accelerator 1.6 for use with Experience Platform 8.2 | -| [Sitecore Experience Accelerator CD for 8.2](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/16/Sitecore%20Experience%20Accelerator%2016%20Initial%20Release/Secure/Sitecore%20Experience%20Accelerator%201.6%20rev.%20180103%20for%208.2%20CD.zip) | Download Sitecore Experience Accelerator CD 1.6 for use with Experience Platform 8.2 | -| [Sitecore Experience Accelerator for 9.0](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/16/Sitecore%20Experience%20Accelerator%2016%20Initial%20Release/Secure/Sitecore%20Experience%20Accelerator%201.6%20rev.%20180103%20for%209.0.zip) | Download Sitecore Experience Accelerator 1.6 for use with Experience Platform 9.0 | -| [Sitecore Experience Accelerator CD for 9.0](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/16/Sitecore%20Experience%20Accelerator%2016%20Initial%20Release/Secure/Sitecore%20Experience%20Accelerator%201.6%20rev.%20180103%20for%209.0%20CD.zip) | Download Sitecore Experience Accelerator CD 1.6 for use with Experience Platform 9.0 | - -## Download options for Azure AppService - -| Resource | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------ | -| [Sitecore Experience Accelerator WDP for 8.2](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/16/Sitecore%20Experience%20Accelerator%2016%20Initial%20Release/Secure/Sitecore%20Experience%20Accelerator%201.6%20rev.%20180103%20for%208.2.scwdp.zip) | WebDeploy package for XP0 configuration and for CM role in XM and XP configurations. | -| [Sitecore Experience Accelerator CD WDP for 8.2](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/16/Sitecore%20Experience%20Accelerator%2016%20Initial%20Release/Secure/Sitecore%20Experience%20Accelerator%201.6%20rev.%20180103%20for%208.2%20CD.scwdp.zip) | WebDeploy package for CD role in XM and XP configurations. | -| [Sitecore Experience Accelerator WDP for 9.0](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/16/Sitecore%20Experience%20Accelerator%2016%20Initial%20Release/Secure/Sitecore%20Experience%20Accelerator%201.6%20rev.%20180103%20for%209.0.scwdp.zip) | WebDeploy package for XP0 configuration and for CM role in XM and XP configurations. | -| [Sitecore Experience Accelerator CD WDP for 9.0](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/16/Sitecore%20Experience%20Accelerator%2016%20Initial%20Release/Secure/Sitecore%20Experience%20Accelerator%201.6%20rev.%20180103%20for%209.0%20CD.scwdp.zip) | WebDeploy package for CD role in XM and XP configurations. | -| [Sitecore PowerShell Extensions WDP 4.7 for Sitecore 8/9](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/16/Sitecore%20Experience%20Accelerator%2016%20Initial%20Release/Secure/Sitecore%20PowerShell%20Extensions-4.7%20for%20Sitecore%208.scwdp.zip) | WebDeploy package for Sitecore PowerShell Extensions 4.7 for Sitecore 8 and 9. | -| [Sitecore PowerShell Extensions WDP 4.7.2 for Sitecore 8/9](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/16/Sitecore%20Experience%20Accelerator%2016%20Initial%20Release/Secure/Sitecore%20PowerShell%20Extensions-4.7.2%20for%20Sitecore%208.scwdp.zip) | WebDeploy package for Sitecore PowerShell Extensions 4.7.2 for Sitecore 8 and 9. | - -## Release Information - -| Resource | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------- | -| [Release Notes](/downloads/Sitecore_Experience_Accelerator/16/Sitecore_Experience_Accelerator_16_Initial_Release/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | -| [Known Issues](https://kb.sitecore.net/articles/196733) | Choose this link to access the Sitecore Knowledge Base. | -| [Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/16/Sitecore%20Experience%20Accelerator%2016%20Initial%20Release/Secure/SXA%201.6%20Installation%20Guide.pdf) | The installation procedure for the Sitecore Experience Accelerator. | -| [Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Accelerator/16/Sitecore%20Experience%20Accelerator%2016%20Initial%20Release/Secure/SXA%201.6%20Upgrade%20Guide.pdf) | To upgrade from a previous SXA version please follow the instructions in this guide. | -| [Documentation](https://doc.sitecore.net:443/en/Products/Sitecore_Experience_Accelerator) | Documentation for Sitecore Experience Accelerator. | diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/17/Sitecore_Experience_Accelerator_17_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/17/Sitecore_Experience_Accelerator_17_Initial_Release/Release_Notes.md deleted file mode 100644 index e87a7d28d..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/17/Sitecore_Experience_Accelerator_17_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,90 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/17/Sitecore_Experience_Accelerator_17_Initial_Release/Release_Notes ---- - -**April 2018 – released Sitecore Experience Accelerator 1.7 (rev. 180410)** - -Sitecore Experience Accelerator (SXA) enables parallel work streams (content, creative design, UX, coding) to not only reduce the time required to produce a website, but also improve the quality by allowing all contributors to validate each other's contributions. SXA provides reusable user experience layouts and components that are fully integrated into the Sitecore editing experience. - -## New feature/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​The new `Generic HTML` meta component allows you to add arbitrary HTML to a page. | | 11140 | - | ​Dynamic Placeholder enabled components now have a default placeholder settings item to fall back on if a specific item was not created. | | 11800 | - | Generic links to media items can now be used to render images on the page using the new `Responsive Image` rendering variant field renderer. | | 11137 | - | ​The component editing logic has been removed from the JavaScript for the site theme and introduced as a separate Base editing theme. | | 11684 | - | You can now use model properties to render HTML as the content of rendering variant tags.​ | | 11138 | - | Verbose logging has been added for path replacements in the `Set-NewLinkReference` PowerShell command. | 502191 | 11612 | - | You can now dynamically boost search results per page based on the rules in the Sitecore rules engine.​ | | 11134 | - | ​You can now show previews of rendering variants in the Experience Editor experience toolbar drop-down. | | 11135 | - | A container with a specified data source renders the components in its placeholder as if they were placed on the data source item. ​ | | 10025 | - | JavaScript is no longer included in the themes created by SXA. A basic theme that contains the scripts is included instead. ​ | | 11678 | - | ​A new `Responsive Image` rendering variant field renderer has been added to enable all the components that support rendering variants to serve images of different dimensions based on the device size. | | 8328 | - | You can now use out-of-the-box functionality to create a site that is hidden behind a custom login page.​ | 500687 | 11351, 11325 | - | You can now search for media in the search box component based on the media name and content. | 501020 | 11414 | - | ​The user experience of the dialog for creating and selecting data sources has been improved.​​ | | 10451, 11384 | - | ​A calculated field processor that stores a value in the index depending on whether an item field is empty has been added. | | 11131 | - | ​A cloned site will now appear in the content tree automatically without having to refresh the view. | | 8625 | - | Pages that contain search components will no longer add any hash parameters until a user interacts with the search component. | 491621 | 9093 | - | The `Composite` theme now inherits from the `Basic` theme.​ | | 9337 | - | You can now define multiple link providers and switch to a custom provider on a site by site basis.​ | 492500 | 9391 | - | ​The Creative Exchange Gulp watcher now recognizes changes in variant styles and compiles the CSS accordingly. ​ | | 9423 | - | The open source JavaScript libraries have been updated to the latest versions. | | 10177, 11406 | - | We have changed the nomenclature from `Feature` to `Module` for SXA functionalities enabled in sites and tenants to align with Helix.​ | | 10498 | - | ​We have added the `Randomize` sorting option to enable search results to return a set number of randomized results.​ | 498466 | 10778 | - | Filters now display values based on the language settings of the associated search results component. | 498255 | 10966 | - | Content is now tagged with the language specific tag name rather than the generic item name.​ | 498255 | 10966 | - | ​The default rendering variants are now cloned along with the cloned component.​ | | 10747 | - | Search query tokens functionality has been introduced together with tokens to allow authors to define context-related searches.​ | | 11128 | - | ​You can now defer the first search operation until the page visitor interacts with a search component. | | 11132 | - | The `Variant Query` rendering is now able to use content search queries on top of previous Sitecore queries.​ | | 11136 | - | The `Placeholder Renderer `rendering variant now has a checkbox that allows the designer to change the context so that the components in the placeholder are rendered as if they were part of the item that contains the rendering variant.`` | | 10012 | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​Deleting an original item from the delegated area source does not delete the delegated area clone. | | 9362 | - | An SXA item that uses a data source query displays an error in the Content Editor when it is moved outside of the designated context.​ | 500631, 503479, 504259 | 9582 | - | The `Metadata `renderings do not appear after being dropped on a filled placeholder.`` | 501684 | 9752 | - | ​The `Overlay size `setting does not affect the overlay page display.`` | 498122 | 9752 | - | ​SXA can break the `robots.txt` functionality for non-SXA sites on the same Sitecore instance. | 497222 | 10455 | - | Resolving tokens in `Standard Values` can cause SXA scoped fields to show errors in the Content Editor. | 497454 | 10531 | - | Redirect item does not work on Sitecore 9.0​.​ | 498540 | 10591 | - | SXA interferes with the deployment of marketing definitions.​ | 498122 | 10645 | - | When importing the Creative Exchange package, any existing SXA style that contains a space is regarded as a new style.​ | 497489 | 10660 | - | `Sitecore.XA.Foundation.Search.Azure.config` breaks the Content Editor and front-end search. | 497525 | 10690 | - | There are possible conflicts between the type of an incoming field and the EDM type in the Azure search index.​​ | 498122 | 10707 | - | Some text is incorrectly translated in the Japanese UI. | 497548 | 10721 | - | ​The `Load More` button can sometimes be displayed, even when the search results do not have any more content to show.​ | 497420 | 10845 | - | The JSON placeholder name is not unique and this causes the JSON component to disappear.​ | 498660 | 10960 | - | ​The `Experience Toolbar` gets stuck on the first selected field when you apply a page design to the page but do not select a rendering on the page itself. | 498460 | 10950 | - | The `active-facet` style is removed from the `Filter(Checklist)` SXA Facet when an additional SXA facet is added on the page. | 498548 | 10878 | - | ​Creative Exchange export to folder does not work in Sitecore XP 9.0 if it is defined as a relative path. | | 10946 | - | Control characters are not escaped correctly in the JSON output.​ | 499050 | 10973 | - | A `Check List Filter` working with the `Number/Integer` field type, does not display values correctly. | 499073 | 10974 | - | ​You cannot personalize the `Carousel` component. | | 11064 | - | ​The `AssetLinksGenerator` can leak database connections. | 499451 | 11112 | - | The `Query String` parameter is not rendered in the `Link` field. | 499612, 503121 | 11146 | - | Content search throws an exception when there is an item that has no version in the default language.​ | | 11149 | - | ​A global snippet is used instead of a local copy if the snippet is configured to prompt the user to make a choice. | 499904 | 11152 | - | The Page and Partial Designs from a shared site might not show up if the shared site and the local sites are in different languages. | 499679 | 11159 | - | ​Components that contain dynamic placeholders may not work if the display language of the client is Japanese. | 499869, 500779, 501710 | 11239 | - | ​A snippet in a component that contains a dynamic placeholder from a partial design renders incorrectly. | 501205, 502332 | 11360 | - | The workflow state of a datasource item is not updated when a page is moved through the workflow.​ | 500922 | 11413 | - | Navigation renders items that have no versions in the current language even if it is configured to skip empty values.​​ | 501194 | 11445 | - | Creative Exchange can fail to export and import the SXA Storefront theme. | 503642, 502258 | 11448 | - | ​The SXA components require additional configuration to function correctly when you use the `Presentation Details` dialog to add them. | 500914 | 11568 | - | ​Search Filters (Facets) do not take the search scope into consideration when displaying the content count. | 503028 | 11611 | - | Specifying sorting in the search scope causes an error to occur. | 503634 | 11656 | - | Date filters should use the UTC date format.​ | 501332 | 11661 | - | ​The placeholder in some rendering variants is not rendered. | | 11692 | - | The `Unterminated identifier` error occurs when you use the `Link` component in a shared site.​ | 502234 | 11756 | - | In the Experience Editor, the `Associated Content` button does not open the expected dialog.​ | 502990 | 11802 | - | The NVelocity templates are not releasing memory. | 504706, 521749 | 245881, 243951 | - | To prevent Sitecore from exceeding the maximum number of fields allowed in the Azure search indexes, unnecessary SXA fields should be excluded. | 498162 | 10506 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/17/Sitecore_Experience_Accelerator_17_Update1/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/17/Sitecore_Experience_Accelerator_17_Update1/Release_Notes.md deleted file mode 100644 index 55e0dac7b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/17/Sitecore_Experience_Accelerator_17_Update1/Release_Notes.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/17/Sitecore_Experience_Accelerator_17_Update1/Release_Notes ---- - -**June 2018 – released Sitecore Experience Accelerator 1.7 Update 1 (rev. 180604)** - -Sitecore Experience Accelerator (SXA) enables parallel work streams (content, creative design, UX, coding) to not only reduce the time required to produce a website, but also improve the quality by allowing all contributors to validate each other's contributions. SXA provides reusable user experience layouts and components that are fully integrated into the Sitecore editing experience. - -## New feature/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​We have provided a set of sample scripts that allow you to integrate Creative Exchange with your Continuous Integration environments.​ | | 12404 | - | Components that experience an exception in their code are now wrapped with standard markup. This hides them and makes it easier to investigate the problem. ​​ | | 12405 | - | SXA now uses its own optimized custom search indexes.​ | | 12519 | - | ​​You can now override the default indexes that SXA uses per language and per site to enable provider-specific features that can be language specific, such as, stop words. | | 12595 | - | SXA now supports working with Solr in Azure.​ | | 12626 | - | ​​The Rendering variant placeholder renderer now supports an explicitly provided placeholder key and allows you to assign placeholder restrictions. | | 12663 | - | The `Layout Service` has been updated to the latest version. ​ | | 12822 | - | The introduction of an additional placeholder cache layer has improved the performance of the Experience Editor. ​ | | 12303 | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​When a user interacts with the Slider Filter, no results are displayed in SXA search results. | | 10210 | - | ​​Overlay height is not properly applied on a page. | | 11076 | - | ​Creative Exchange does not distribute an imported layout correctly between the `Shared` and `Final` fields based on where the renderings are stored, but always imports them to the final layouts. | | 11122 | - | ​​In SXA Data Modelling, JSON is not properly rendered for the `Link List` component​. | | 11422 | - | ​The C​ontainer background image is removed when you add a component to its placeholder. | 502135, 502326, 505087 | 11680 | - | ​The SXA Search service throws an error when you click a POI marker on a map.​​ | 502352, 504345 | 11695 | - | Creative Exchange terminates with an error when a user tries to import from an empty folder.​​ | | 11975 | - | ​The `Checklist` filter does not work correctly when you try to select multiple values. | 503843 | 12082 | - | ​​Newly created SXA modules are not displayed in the scaffolding dialogs if the UI language is not set to English when they are created.​ | 504431 | 12131 | - | A newly added carousel includes content from another carousel that exists on the same page if the user doesn't save the page between deleting the old carousel and adding the new one.​ | | 12191 | - | Pages that are exported with Creative Exchange do not function correctly in offline browsing if the site is configured to include language prefixes.​​ | 503637 | 12203 | - | The `Radius` filter does not render its title.​ | 504348 | 12255 | - | ​​The `Range slider` filter doesn't output the initial selection range text until after the first user interaction. | | 12279 | - | An invalid lookup Source error appears for the Page Content element for the `Page __Standard values`.​ | 504890 | 12345 | - | ​​The `Document Manager` dialog is not populated when you install SXA. | 505690 | 12398 | - | C​reative Exchange stops the entire import process when it encounters a page it can't parse. An appropriate error is now logged and the process continues.​ | | 12402 | - | ​​Over 550 default SXA fields are now excluded to provide more room for custom fields before reaching the A​zure index limit of 1000 fields. | 506114 | 122416 | - | ​SXA processors are executed unnecessarily for non-SXA sites. | | 12491 | - | Creative Exchange does not export empty files.​ | 505183 | 12576 | - | ​​The dictionary in the `GridDefinition` class is not thread-safe​ and this adds an error to the log files when an application restarts.​ | 504133 | 12543 | - | ​When you are editing, an empty `N​avigation` component does not appear when there are no items to display in the current language. | 504592 | 12561 | - | Publishing a large instance with SXA takes longer than expected.​​ | 505857 | 12563 | - | ​H​TML is not purged correctly for SXA sites during the publishing process. | 508046 | 12567 | - | ​​The `Is Link` field works incorrectly in combination with the `Field used as link target` field on nested rendering field variants.​ | 506468 | 12592 | - | ​You cannot use rendering variants from shared sites as reusable components in other sites in the same tenant.​ | 505611 | 12756 | - | The `Page data` folder for a rendering that is added to a composite site is created under the page rather than under the composite item.​​​ | | 12759 | - | When you drag and drop a component, the placeholders slide on the page if a rendering variant with the placeholder exists on the page. | | 12775 | - | Nested composite components ignore the datasource of the nested component.​​ | 506671 | 12776 | - | A Content Editor upgrade warning incorrectly says that an update is required.​ | | 12787 | - | A regular expression is unnecessarily executed when you publish a page and this results in higher CPU usage.​ | 507484 | 12789 | - | ​​An unnecessary invisible character - `` - is included in the language selector component. | 507424 | 12792 | - | In the Experience Editor, in a rendering variant field, the `Render if empty` option hides the empty field if it is not checked making it impossible to edit that field.​ | 507956 | 12820 | - | The Azure search provider is configured incorrectly and causes errors during indexing.​​ | 508349 | 12859 | - | When you use the Azure Search provider, fields with the same name and different types cannot be stored next to each other in the index.​​ | 501774 | 207510 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/18/Sitecore_Experience_Accelerator_180/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/18/Sitecore_Experience_Accelerator_180/Release_Notes.md deleted file mode 100644 index b38e98423..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/18/Sitecore_Experience_Accelerator_180/Release_Notes.md +++ /dev/null @@ -1,133 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/18/Sitecore_Experience_Accelerator_180/Release_Notes ---- - -**November 2018 – released Sitecore Experience Accelerator 1.8** - -Sitecore Experience Accelerator (SXA) enables parallel work streams (content, creative design, UX, coding) to not only reduce the time required to produce a website, but also improve the quality by allowing all contributors to validate each other's contributions. SXA provides reusable user experience layouts and components that are fully integrated into the Sitecore editing experience. - -## Highlights - -Sitecore Experience accelerator 1.8 includes: - -- Rendering variants can now include and render components in their structure. -- When you edit a link, you can now define cross-site linking rules for your site which can expose the content of other sites. -- A n​ew Wireframe theme has been added. -- W​e have added support for Bootstrap 4. -- In the Experience Editor, there is a new view mode button that allows users to see the site in Wireframe and Grayscale modes. - -## New feature/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​Site administrators can now organize the toolbox components and groups on a per site basis. | | 242220 | - | ​​Content Editor context scripts have been added to convert page-related data sources from relative paths to Guids and the other way around. | 505079, 512042 | 242129 | - | ​Accessibility has been improved by adding a `Skip link` meta component that allows you to configure pages that can be navigated by people with disabilities.​​ | | 242188 | - | ​​Accessibility - In complex components like composites, links in non-visible content does not get the focus when you tab through content. | | 242182 | - | Accessibility - ​When you tab through, overlays trap the focus to ensure that the focus does not return to the page underneath. ​​ | | 242142 | - | ​Accessibility - Site visitors can navigate complex components with the tab and arrow keys.​ | | 242025 | - | Rendering variants can now include and render components in their structure.​ | | 250727 | - | We have added Pre-delete integration points that you can extend with your own scripts when you delete a site or a tenant. | | 247317 | - | When you edit a link, you can now define cross-site linking rules for your site which can expose the content of other sites.​ | | 247206 | - | A n​ew `Wireframe` theme has been added. | | 247201 | - | ​The `Search Box` now has it's own language settings that allow you to be configure it without having to put the `Search Results` component on the page. | | 242418 | - | You can now disable the DictionaryCacheValue cache in the cache settings. | 505974 | 242392 | - | ​An invalid query that is defined within a rendering variant query element no longer cause sthe component to throw an exception.​ | | 242388 | - | When your license does not entitle you to use SXA, a proper warning is shown in the Content Editor​. | | 242385 | - | ​When you change a tag in your site, the items that are tagged with it are automatically re-indexed. | | 242381 | - | W​e have introduced a template analysis report that allows you to asses that multisite best practices are being followed in your tenant. | | 242381 | - | Cortex Content Tagging support has been added that allows you to store the discovered tags in a site's taxonomy.​ | | 242378 | - | W​e have added support for Bootstrap 4. | | 242374 | - | ​`LocalizableLinkBuilder` helper methods have been added to support multisite domain handling​. | 501772 | 242364 | - | The editing UI is now displayed in the user's interface language, rather than content language. | | 242363 | - | The Content Editor context menu now contains a `Module Scaffolding` item that allows you to install that module in sites where it is not yet installed.​ | | 242353 | - | SXA now supports Solr 7.2.1. | | 242350 | - | ​Developers can define folders with custom views on a per-site basis to replace the out-of-the-box views. | | 242310 | - | You can now define image substitution in a theme and this allows you to replace all images from that theme with a single mock image. | | 242308 | - | In the Experience Editor, there is a new view mode button that allows users to see the edited site in Wireframe and Grayscale modes. | | 242304 | - | ​The administrator can now control whether the `Asset Optimizer` can be disabled with a URL parameter. | | 242286 | - | ​When you create a new tenant, a progress bar is displayed. | | 242284 | - | ​The Creative Exchange restricted themes are now defined the theme itself rather than in a config file. | | 242278 | - | | | | - -## Breaking Changes - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Sitecore Experience Accelerator no longer supports Sitecore 8.2.​​ | | 242356 | - | ​The `Page Design` field on a page is now a `Shared` field - not versioned. | | 242318 | - -## Deprecated/Removed - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | Support for the Social Login wrapper has been removed because none of the supported Sitecore versions include it any longer.​ | | 242220 | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​The `Slider` and `Range` facet filters do not support float facets. | | 242281 | - | ​The `New Tenant` status dialog does not contain a progress bar.​​ | | 242284 | - | After you install SXA, the Upload File window is sized incorrectly and it contains the global header​.​ | 515077, 514094 | 253522 | - | ​​The signature of the Dropdown filter must be in lowercase. | 513853 | 253512 | - | ​​The browser title prefix and suffix are enclosed in HTML tags​. | 509293 | 242294 | - | ​The `No components in header` message is shown for composite renderings on non-English pages. | 509373, 509855, 509931 | 242295 | - | If the `Location Finder` component is empty, the `Map` controller is not centered on the central point of the map .​​ | 509173 | 242298 | - | In the Experience Editor, when you create a `Partial Design`, an unnecessary `sc_version` parameter is added to the query string.​​ | 509262 | 242300 | - | ​During the publication process, the `Virtual Media protection` processor is too aggressive and causes errors. | 512346, 509926, 510329, 510718 | 242301 | - | The `SXA Browser Title` meta component renders HTML encoded text​.​​ | 509293 | 242313 | - | The `Item Queries` functionality doesn't work due to a null reference exception in `FieldTypesEx.BucketInternalLink`.​​ | 508859, 510273 | 242314 | - | When a non-existant site is provided in a URL parameter, the Error Pages show an unhandled exception.​ | | 242320 | - | ​​When you drag a component to a placeholder, the placeholder shows the key instead of the display name. | | 242289 | - | ​​The `Cleanup Data Folder` script removes nested folders. | | 242292 | - | After you upgrade from SXA 1.3 to SXA 1.7, the content of your site is different from that of a fresh site.​ | 509379 | 242327 | - | The `component-search-other.scss` file contains some incorrect import dependencies.​​ | 509075 | 242328 | - | Sites are resolved incorrectly when one of the sites is removed from the `Management/Sites` setting.​​ | 508148 | 242330 | - | ​SXA breaks HTML cache clearing for non-sxa sites. | 508381 | 242332 | - | ​​If you add the `Column Splitter` component​, you can no longer select the `Image` component. | 508721, 510656 | 242336 | - | In the Experience Editor, if you click the `Home` button in the ribbon, you are sent to an incorrect version of the `Home` page. | 508857 | 242341 | - | ​​You cannot set the `Header` variant for Page Content inside a composite component. | | 242360 | - | ​​The Sitemap generator ignores the `LanguageEmbedding` setting in the link provider​. | 504498, 505903, 509162, 509879, 511525, 516748, 517252 | 242369 | - | If the link provider has `alwaysIncludeServerUrl="true"`, the `AssetLinksGenerator` can return links with the wrong host​ name.​ | 507444 | 242373 | - | ​​The `Search Slider` component doesn't work and shows console errors. | | 242376 | - | ​​If there are `Site Setup` items that do not include a `SiteAction` and only include a `Post Step`, scaffolding can fail. | | 242389 | - | The `GetAttributeTokenValue` method does not work with a `DropList` field.​ | 511730 | 242396 | - | `Anchor` does not work in a `Link` field.​​ | 503121 | 242398 | - | ​In the Experience Editor, you cannot switch personalization for the `Tabs` rendering. | 501074 | 242406 | - | The `ListFacets` that work with the `Number/Integer` data type, do not display their values correctly in the Experience Editor​.​​ | 499073 | 243860 | - | ​​If you create a new feature, it is not listed in the `Add site feature` popup when the UI is in Japanese. | 504431 | 243893 | - | ​If you have registered attribute routes and then create a new site, the site can be created with the wrong template and some items can be missing. | 513176, 517386, 517577 | 247071 | - | The Filter dropdown does not support accents in facet name.​​ | 513493, 513743, 511126 | 247113 | - | ​​The `Links Shown in Overlay` setting does not working in the `SearchResults` rendering​. | 513205 | 247119 | - | ​The SXA `SiteResolver UpdatePath()` method causes web services with a long URL to throw an exception​. | 511980 | 247136 | - | When the `Host Name` contains several values, links cannot be resolved.​​ | 511872 | 247138 | - | The SXA `CloudIndexFieldStorageValueFormatter`​ class breaks the `List Manager` report.​​ | 512206, 514385, 516013 | 247139 | - | Cloned items from a delegated area are only published in English.​​ | 509480, 510785 | 242235 | - | After you restore or deserialize site items, the `Creative Exchange` buttons are not visible in the Content Editor.​​ | 504246 | 242240 | - | ​The workflow state of a datasource does not change when a page is moved through the workflow. | 500922, 511081 | 247286 | - | Autocomplete does not work with the location finder​.​​ | 508029, 509617 | 247292 | - | ​​In the Experience Editor, when you edit Partial Designs, assets are always optimized. | | 247976 | - | The facets of Shared Sites are not applied to search results.​ | 514516 | 251186 | - | ​​The `Enable Preview` site setting prevents SXA from displaying custom error pages. | 513927, 515961 | 251582 | - | If you create an item with spaces in its name, you cannot add renderings because of an error in the `item:added` event.​​ | 512395 | 251817 | - | ​The `ResolveSiteFromRequestImpl()` method contains an incorrect parameter that prevents multi-site solutions from resolving virtual folders correctly. | 514856 | 252270 | - | In SXA cache setting items, the `Rendering` field is not shared. | 514853 | 252799 | - | ​In some cases a bootstrap column is not added when you decorate a rendering. | 515209 | 253359 | - | In Internet Explorer, the `Select Associated Content` dialog does not have `Create` and `Copy To` functionality. | 514553, 518565 | 253366 | - | The SXA Redirect Map does not match a valid `Regex` with a `URL​`.​ | 514442 | 253372 | - | The Event Calendar behaves inconsistently. | 510556 | 242232 | - | ​In SXA 1.7.1​, `​View` renderings do not work. | 510567, 514387 | 242222 | - | In Internet Explorer 11, SXA does not load video files if you have defined a Poster Image field. | 511365 | 242181 | - | Users who do not have publishing rights can see the `Publish Item` button in the context menu. | 510794 | 242180 | - | Personalization does not work in embedded composites.​​ | | 242175 | - | In delegated areas, you cannot make a new version of an item if a clone already exists. | 512284 | 242159 | - | ​When you create a local datasource, the security check throws an error. | 510033, 511556, 516412 | 242114 | - | In the Experience Editor, when you open `__Standard Values` of a template, an error is thrown. | 512330 | 242066 | - | ​The `Checklist Filter` component does not work if the casing of the facet does not match the casing of the indexed value​. | 509403, 511681, 513853, 518574 | 242045 | - | In the Experience Editor​, saving a carousel with more that 9 slides causes an exception. | 508734, 509230, 509522, 510861, 516914 | 242022 | - | In a `Responsive Image` template, the `Field Name` field is not shared. | 512092 | 241955 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/18/Sitecore_Experience_Accelerator_181/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/18/Sitecore_Experience_Accelerator_181/Release_Notes.md deleted file mode 100644 index 994b1b184..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/18/Sitecore_Experience_Accelerator_181/Release_Notes.md +++ /dev/null @@ -1,65 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/18/Sitecore_Experience_Accelerator_181/Release_Notes ---- - -**April 2019 – released Sitecore Experience Accelerator 1.8 Update 1(rev. 190319)** - -Sitecore Experience Accelerator (SXA) enables parallel work streams (content, creative design, UX, coding) to not only reduce the time required to produce a website, but also improve the quality by allowing all contributors to validate each other's contributions. SXA provides reusable user experience layouts and components that are fully integrated into the Sitecore editing experience. - -## New feature/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | In the Content Editor, the tooltips for the `Tags`, `CSS Class`, and `Data Attributes` fields have been improved. | ​​ | 250866 | - | The `Variant` tag is no longer rendered when the tag is not selected. | 515121​​ | 253519 | - | You can now pass the `Rendering Variant` model object to the `RuleContext`. | ​​ | 296284 | - | ​You can now skip scanning for related items in the `AggregatedContent` computed field by inheriting from an additional data template. | ​​​ | 297946 | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | The `Location finder` is not pre-populated with the locations based on the geo-coordinates in the URL. | ​​509173 | 247183 | - | The gallery splash image for video services other than `YouTube` is not shown in some geographical locations. | ​​516834 | 247273 | - | The `Server Error Page` should return HTTP code 500 instead of 200. | ​​ | 247325 | - | ​On a mobile device, a visitor is unable to swipe up or down in the `Carousel`. | 40805​​​ | 250221 | - | The `Date Picker` component should use the current context language to display translated calendars. | ​​514515 | 250618 | - | The `Variant` tag should not be rendered when the tag is not selected​. | 515121​​ | 253519 | - | The `Multiroot Treelist` item selector does not support multiple roots. | 515219​​ | 253926 | - | The `Data source` of a rendering is always created in the English language instead of the current language​ of the page. | ​​514683, 518445, 518957, 521666 | 254850 | - | In the `EXM Experience Editor`, in the `Data source` dialog, the `Create` button doesn't work correctly. | 516129, 518595​​​ | 255361 | - | In the `Internal Link` field, the `Edit link experience` button does not show a link selection dialog. | 515600​​ | 255525 | - | Facet filters do not pass the `Item ID` to the server and this results in the wrong indexes being queried. | ​​520809 | 255689 | - | When handling a 500 error, the `customErrors` setting in the `Web.config` file is not taken into account. | ​​516062 | 255691 | - | The placeholders of a shared site are not listed in the `Placeholder settings` dialog. | ​​516611 | 256433 | - | The `Local Placeholder` setting displays incorrect names for dynamic placeholders​​. | 517440​​​ | 258360 | - | When you select a variant of a component, no value is displayed. | 517688​​ | 286579 | - | Fields with GUID based values in an SXA site are not properly replaced when the site is cloned. | ​​517886 | 287628 | - | The content in a snippet can't be removed if the snippet is in a splitter component​. | ​​517827 | 287678 | - | The `Image` component defaults to `style="margin: 0px 0px"` if the `Space` settings of the image are empty. | ​​​518291 | 288593 | - | In SXA, search only works for items under the `Home` site. | 518430​​ | 288824 | - | A `SectionVariant` with the `IsLink` field selected, throws a Null exception if the `Field used as link target` field of the datasource item is not set. | ​​518301 | 289780 | - | In preview mode, the `Accordion Item 1` text is not fully displayed in the rendering. | ​​ | 289932 | - | In the Experience Editor, if the tenant name contains a hyphen, the `Site Page Designs` button returns an error. | 518303​​ | 289938 | - | You cannot remove or add components from a snippet in any language​ other than the UI language. | 517827, 521866​​​ | 290142 | - | When you publish, the caching options may not be properly flushed because the wrong site is resolved on the CD server. | ​​517830, 523390 | 290325 | - | SXA cross-site links do not work if the links are defined in different domains​. | ​​ | 290329 | - | In the Experience Editor, media items that are uploaded from a `Rich Text` component, are not created in the context language​. | 518949​​ | 290662 | - | When you apply personalization to an SXA rendering, the `Solr Error : ["undefined field local"]` error is shown. | 516932​​ | 290802 | - | In the `Creative Exchange Export settings` dialog, unexpected additional sites may be displayed in the `Site context` section. | ​​ | 293640 | - | The `Insert link `window doesn't show the current site's home node and it's child items.`` | ​​519867, 522154, 523301, 523870 | 293880 | - | A page does not inherit the placeholder settings that are defined for a Partial Design​. | ​​519571 | 293964 | - | In a `Snippet` component, nested data sources are not searchable.​ | 519933​​​ | 295374 | - | Search does not work with a facet when it has a space in its name. | ​​520829 | 298497 | - | The `Inheritance` computed index field causes a `NullReferenceException` when you rebuild the `analytics` index. | 521422​​ | 300208 | - | Links in a `Rich Text` field are rendered incorrectly in the `Privacy Warning` component. | ​​521839 | 301848 | - | ​When you use the `Bootstrap 4` grid, an extra unwanted row class is added around some placeholders. | ​​522563, 522590 | 301904 | - | When you create a new version of an item that is cloned using the `Delegated Areas` feature, a permissions issue causes an error. | 520423​​ | 296374 | - | When you enter special characters like `&` or `?` in the `Search` box, no results are returned and a JavaScript error appears in the browser console. | ​​516898 | 257237 | - | The multisite link provider can cause problems when generating a customized error page. | 520345​​ | 295034 | - | The following error appears in the Internet Explorer​ browser console: `Object doesn't support the property or method 'parseInt'`. | ​​​520179, 521301, 525215 | 295759 | - | A potential memory leak is caused by using a platform method that is not suited for production code. | ​​522137 | 300071 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/19/Sitecore_Experience_Accelerator_190/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/19/Sitecore_Experience_Accelerator_190/Release_Notes.md deleted file mode 100644 index c587ffe2f..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/19/Sitecore_Experience_Accelerator_190/Release_Notes.md +++ /dev/null @@ -1,93 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/19/Sitecore_Experience_Accelerator_190/Release_Notes ---- - -**July 2019 – released Sitecore Experience Accelerator 1.9.0** - -Sitecore Experience Accelerator (SXA) enables parallel work streams (content, creative design, UX, coding) that not only reduce the time required to produce a website, but also improve quality by allowing contributors to validate each other's contributions. SXA provides reusable user experience layouts and components that are fully integrated into the Sitecore editing experience. - -## Highlights - -Sitecore Experience accelerator 1.9 includes: - -- You can now add background images to any component. -- You can now define a rule in the `Sitecore Rules Engine` that assigns a page design to a page when it is rendered. -- ​​StyleLabs is now integrated with SXA Responsive images and allows you to use StyleLabs transformations to render the most appropriate images for different screen sizes. -- SXA is now integrated with JSS. -- ​A Component Wizard has been added to facilitate the creation of custom components assembled from SXA features. - -## New feature/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​A new pipeline have been introduced to extend the rendering of search results with injected models.​​ | | 312358 | - | When you create a `Tenant` and a `Site`, a matching folder structure is created under the `Forms` root item. | 512325 | 242100 | - | ​​​The `SXA Razor Views` are now precompiled to improve server warm-up time​. | 521442 | 247369 | - | SXA check boxes are no longer shown in the Experience Editor if you are editíng a non-SXA site page.​​ | | 247710 | - | You can now add background images to any component by adding the `Background Image` data template to your datasource template inheritance list. | | 247727 | - | You can now configure `Rendering` variants so that they are available in `Partial Designs` and `Composites`.​​​​ | | 247754 | - | The `SXA Site Manager` now contains a button for refreshing the site list.​ | | 247785 | - | ​​​​You can now define a rule in the `Sitecore Rules Engine` that assigns a page design to a page when it is rendered. | | 311081 | - | ​​StyleLabs is now integrated with SXA Responsive images and allows you to use StyleLabs transformations to render the most appropriate images for different screen sizes. | | 300489 | - | In Experience Editor, the SXA component toolbox now allows you to filter the component list by some text​. | | 289028 | - | If a media item is not found or if an item layout is not defined​, you can now show a custom error page.​​​ | | 286695 | - | The `Pagination` component now uses 1 based indexing rather than 0 based indexing and this gives more user-friendly URLs.​​ | 517256, 518345, 524256, 530520 | 257567 | - | You can now use the `Sitemap Index` and the `Structure Sitemap` simultaneously on a single site​. | 516115 | 257372 | - | The `Image` component no longer renders a link around an image if the link was not specified in the data source.​​​ | 516127 | 255497 | - | SXA is now integrated with JSS and you can create tenants and sites that can be consumed by JSS​. | | 252753 | - | ​​​ECMAScript 6 support has been introduced by adding a `Sources` folder to a theme. It can be down-compiled to ECMAScript 5 with the tools that are provided. | | 250859 | - | ​​Canonical URL meta rendering has been added that allows you to add canonical URLs for pages that can appear on multiple sites. | | 250729 | - | ​A `Component Wizard` has been added to facilitate the creation of custom components assembled from SXA features. | | 247849 | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | In the `robots.txt` file, `Allow` and `Disallow` entries are not updated correctly based on user input. ​​ | 517065, 517907 | 257288 | - | The `Link List` renders an empty tag when the `Title` field is empty​. | CS0158095, CS0168099, CS0164922 | 328501, 349511 | - | The `Illegal recursion detected: GetModel` message may appear after a server is restart​​ed. | 519978, 512321, 521645, 523168, 526210, 526213, 529755 | 247244 | - | If the `Enable Preview` setting disabled on a website, the website does not appear on a content delivery server.​​​ | 518435 | 287750 | - | In the `Wireframe` theme​ on `Bootstrap 4`, if you place rich text in a nested placeholder, it is aligned incorrectly. | | 290172 | - | ​​​If the `Asset Optimizer` is disabled and the current theme contains over 100 CSS files, only some of the theme CSS file links are rendered on a page. | | 291496 | - | SXA does not respect the `RequestErrors.UseServerSideRedirect` setting in the `Sitecore.config` file.​​ | 518917 | 292799 | - | In a paused YouTube video, if you click the `Share` icon, the video resumes playback. | 520375 | 296541 | - | The `Publishing Service` does not publish in SXA. | ​​517665, 519554, 524074, 524313 | 286762 | - | Data sources that are set in the `Final Renderings` field of composite sections are rendered incorrectly.​​​ | 515779 | 296704 | - | ​​An invalid email address causes content ​to be displayed rather than the validation message. | 520025, 527928 | 296726 | - | Sitecore forms cannot be embedded in SXA overlays. | 520188, 525335 | 296772 | - | If the `Maps` theme is not added to the inheritance structure of the site theme, a JavaScript error is displayed for the SXA search components.​​​ | 520151 | 297240 | - | If you add `local promo` renderings to the `main` placeholder, the `Field control has failed to render: Guid should contain 32 digits...` exception is displayed. | 520474, 521822 | 297944 | - | If the search phrase contains an ampersand character, the search box does not work.​​​ | 521209 | 299324 | - | ​​`Creative Exchange` exports HTML with optimized rather than expanded CSS and JS. | 522375, 522410, 522511, 523269, 528468 | 301730 | - | SXA data source tokens don't work with the `Component` variant renderer. | 522622 | 302117 | - | ​​​The SXA taxonomy `TagTokenBase.BuildModel()` method uses the tag name instead of the configured field value. | 522846 | 303709 | - | ​​SXA search results use the default link provider rather than the SXA link provider. | 522596 | 304251 | - | `SxaItemCrawler` does not remove deleted documents from the `sitecore_sxa_web_index` during publishing operations. | 521125, 522988, 523114, 527263, 528197, 529819 | 304700 | - | ​​​If `Show predictions` is selected in the `Search Box` properties, a `NullReferenceException` is thrown. | 525769 | 305143 | - | When you use `Azure Search`, the `Facet` service fails if there are more than 50 items in the result. | 522975, 528274 | 305246 | - | ​​​The name of the `XA.Foundation.Search.SolrCloud.SwitchOnRebuild` configuration file does not match the content of the file. | 523360 | 305546 | - | ​​The `SXA Creative Exchange Protected Theme` checkbox may not work if folder names at the same level are substrings of each other. | 522923 | 305902 | - | The `Responsive image` variant component creates invalid HTML markup that contains an additional `` tag. | 523342 | 306103 | - | Users are unable to edit multiple snippets on a page.​​​ | 523372 | 306223 | - | ​​The Carousel shows an error if you change the rendering variant of the embedded Page Content rendering. | 532519 | 306382 | - | The `$sharedSites` token does not show the correct root location for the `DropTree` field. | 523445 | 306406 | - | If two composites of the same type are placed on a page, changing the data source in the composite rendering causes the embedded renderings to disappear.​​​ | 524802 | 309589 | - | If an `SXAContent` computed index field contains aggregated page content, it creates an unnecessary performance overhead. | | 309722 | - | ​​​Bing map does not work on a website that is configured to use the HTTPS protocol because of a Mixed Content error. | 525268 | 309922 | - | ​​Creative Exchange export operations are interrupted if links contain invalid `Href` attributes. | 524464 | 309955 | - | The performance of the `Page rendering` process is poor due to excessive calls to the `Template Engine`. | 521442 | 310071 | - | ​​​The performance of the `Page rendering` process is poor because the `Asset Links Generator` makes excessive use of the `assetService` pipeline. | 521442 | 310089 | - | ​​If you enter a question mark in the value of the `Data attributes` for a rendering variant, it breaks the HTML markup. | 825403 | 311853 | - | If the name of a site contains a dash, rendering variants with query elements that are used in a `Partial Design` fail to render data. | | 312574 | - | ​​​Trying to add composite data source sub-items produces a dialog with the incorrect tree item selected. | 525618 | 313329 | - | The data source of a snippet disappears when you add the snippet to the 10th dynamic placeholder. | 525812 | 315409 | - | The enumeration of the `Link Wrapper Options` field is empty.​​​ | 529336, 530386 | 326111 | - | ​​If a page has an empty `__Renderings` field, the upgrade script fails. | 528248 | 324153 | - | When you export a site through Creative Exchange, language names are incorrectly cut from the URLs. | 528470 | 323170 | - | ​​​Nested snippets do not have the correct data source value when the parent snippet is automatically copied using the `data source behaviour` functionality. | 526502 | 318089 | - | If you install SXA, the `Content Testing` functionality cannot be disabled.​​ | 524776, 526398 | 316998 | - | If you define a rendering variant field and use it on a mobile device, an infinite recursion can occur when the page is loaded. | 526602, 537373, 536173, 534593, 532436, 530186, 527534 | 315324 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/9x/Sitecore_Experience_Accelerator_930/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/9x/Sitecore_Experience_Accelerator_930/Release_Notes.md deleted file mode 100644 index 064a56a61..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/9x/Sitecore_Experience_Accelerator_930/Release_Notes.md +++ /dev/null @@ -1,119 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Accelerator/9x/Sitecore_Experience_Accelerator_930/Release_Notes ---- - -**November 2019 – released Sitecore Experience Accelerator 9.3.0** - -Sitecore Experience Accelerator (SXA) enables parallel work streams (content, creative design, UX, coding) to not only reduce the time required to produce a website, but also improve the quality by allowing all contributors to validate each other's contributions. SXA provides reusable user experience layouts and components that are fully integrated into the Sitecore editing experience. - -## Highlights - -- A new command line interface has been introduced to improve theme creation and configuration. -- The Scriban templating engine has been added to the `Rendering Variants` to give greater flexibility with generated HTML. - -## New feature/improvements - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | ​​You can now filter the items in the `ceExport.pageValidation` pipeline before they are exported with Creative Exchange. | | 257357 | - | ​​The Creative Exchange Live tooling is now available as an NPM package​. | | 291709 | - | All the variant fields no longer render a tag when the `Tag` field is empty, and this produces cleaner HTML​​. | 521564, 529338 | 298945 | - | ​​A new command line interface has been introduced to improve theme creation and configuration. | | 318366 | - | ​​A new `Aggregated Facet Filter` component has been added​. | | 319304 | - | A new `Facet Summary` component has been added​.​​ | | 319332 | - | The `Creative Exchange Live` tool can now be configured to not upload partial CSS and JS sources files​. | | 324423 | - | ​​Search filters are now hidden automatically if no facet values are available for them​. | | 329848 | - | ​​The Basic2 theme is now available as an NPM package on Myget​. | | 350089 | - | The Scriban templating engine has been added to the `Rendering Variants` to give greater flexibility with generated HTML.​​ | | 335204 | - | `Available Renderings` items for Sitecore Forms items are no longer named in an ambiguous manner. | 533088 | 342636 | - | You can use Creative Exchange to export and re-import Scriban templates.​​ | | 335198 | - | You can now add custom scaffolding actions to the site/tenant deletion process and execute additional code both before and after an SXA site or tenant is deleted.​​ | | 335647 | - | SXA now supports basic editing of its pages in Horizon​.​​ | | 336607 | - | Creative Exchange Live tooling is now available as NPM packages​. | | 338480 | - | ​​You can now configure the number of characters that you must enter in the Search Box before it starts to make suggestions. | | 337434 | - -## Resolved issues - -The following issues have been fixed: - - | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | - | When you use the `Layout details` dialog to add placeholder settings, an error occurs. ​​ | 531965, 539472 | 247421 | - | ​​If the host name in the site definition includes a wildcard and a pipe character, the `500 Server Error` page does not load. | 522592 | 302462 | - | `Composite Renderings` do not work properly with `Content Testing`​. | 523633, 539092 | 306852 | - | ​​Composite specific `Rendering Variants` are missing when you edit components that are embedded in the composites on a page​. | 524258, 432118 | 307728 | - | In `TreeView​`, the image thumbnail is not displayed.​​ | 523866 | 309346 | - | Any changes that you make to the ​`Editable` settings of a placeholder are not reflected in a composite rendering​. ​​ | 524834, 535481 | 312679 | - | ​If you clone a rendering and the name of the new rendering does not form a valid path, ​it throws an uninformative error. | 525163, 529142 | 313420 | - | The `Asset Optimizer` always adds a `?t=` URL parameter even when other parameters are already defined​.​​ | 526061 | 313636 | - | When a page is rendered as JSON​, some characters are not correctly escaped.​​ | 526250 | 313759 | - | ​​​In the `Search box` component, when you search for words that contain hyphens, the search does not return all the results. | 528811 | 313772 | - | `Link List` does not work properly with language fallback​. | 525413, 537445 | 314016 | - | The `Checklist` filter does not work with the `SxaTags` facet in Azure Search​.​​ | 525702 | 314018 | - | ​​To facilitate load balanced environments, the `TargetHostName` provided in the site definition is now used to generate links in the `sitemap.xml` file rather than in the request host. | 526026 | 315140 | - | If you use the `Sitecore Form Wrapper` with Sitecore Form, it causes a Javascript error​.​​ | 526784, 526786, 530484, 532466, 537859, 541268 | 315587 | - | When you clone a site, the `Signature` field of a Partial Design is not updated correctly. | 525457 | 317458 | - | The `Page Selector` makes several calls with ampersands in a query​.​​ | 527320, 531899 | 317982 | - | ​​The `LocalizableLinkProvider` property does not respect the scheme setting at site level. | 526921, 529916, 530049, 537040, 539511, 540436 | 318160 | - | The `Toolbox` is not rendered in IE 11​.​​ | 527313, 527979, 531585, 536673 | 318179 | - | An infinite recursion can occur in the `GetXmlBasedLayoutDefinition.InjectCompositeComponents` method due to the way that fallback device is configured. | 527534 | 318645 | - | The `Grid size` settings do not influence the size of the `Map` component. | 527068 | 318823 | - | ​​The scrollbar in the `Toolbox` is not updated when you resize the window. | 530909 | 328249 | - | The `Learn More` link is not displayed in the cookie message.​​ | | 327034 | - | In the Content Editor, in the Rich Text Editor, you cannot add StyleLabs media. | | 333595 | - | The `Search Filter` dropdown does not support special characters.​​ | 530615 | 334356 | - | ​​In the `Location Filter` component, `Mixed` and `Location` modes do not trigger a search​. | 529524 | 326012 | - | In the `sitemap.xml` file, the scheme for links is taken from the request rather than from the site configuration​.​​ | 529916, 530221, 537040 | 329878 | - | The `Sitecore.XA.Feature.ContentTokens.config` file can conflict with custom configurations​. | 529123 | 323807 | - | When you use the Bootstrap 3 grid, the Glyphicons fonts are missing.​​ | 529403 | 325475 | - | ​​When `Navigation` component is embedded in rendering variants, it doesn't render the appropriate fields. | 529875 | 325707 | - | Facet filtering does not work on Solr if the facet value contains a space.​​ | | 362577 | - | When personalization is applied, `rendering.DataSource` is null. | 540959 | 362374 | - | When you run the upgrade script, an exception is thrown by the `SaveCompositeItems` handler.​​ | 538394, 538394 | 356460 | - | The SXA datasource selection dialog overrides the default dialog for non-SXA sites without exposing the full functionality required to complete the task.​​ | 539268, 540792 | 355958 | - | ​​If you embed a component in the `Search Results` rendering variant, it throws a null database exception. | 531466 | 338019 | - | If the title of a search facet contains a `+`, it does not return any results in `Search Result` component.​ | 533234 | 337480 | - | ​​Reusable snippets are not published​. | 524074, 524313, 539479, 540326 | 339908 | - | `Sitecore.XA.Foundation.Publication.dll` references a non-existant Publishing Service assembly.​​ | 538862, 541683 | 354891 | - | The `sitemap.xml` file contains redundant language URLS.​​ | 533334, 534193, 537473, 538300, 539766 | 335397 | - | Renderings are not saved in the `Accordion\Tabs` components. | 537157 | 353118 | - | ​​The `sitemap.xml` file contains URLs with a double hostname when you use the default link provider​. | 532088, 536328 | 337372 | - | In a multisite setup​, if you set the sitemap mode to `Stored in file`, only a single sitemap is generated.​​ | 533307, 533318, 537472 | 336464 | - | ​​In a partial/page design, personalization rules that change the data source of an item do not work. | 533915 | 337972 | - | If you use the Azure search provider​, the `Distance` facet ignores the scope of the search. | 533796 | 340597 | - | ​​If you run search queries against the SXA search indexes​, a `MissingMethodException` can be thrown. | 534017, 534897, 535109 | 341746 | - | The SXA `Video` component shows a low resolution image on large screens​.​​ | 534070 | 342282 | - | ​​If you use Creative Exchange for pages that are not in the `English` language​, CSS styles are not imported back. | 534713, 536058 | 342611 | - | The `Sitecore.XA.Foundation.Multisite.EventHandlers.HttpRoutesRefresher.PopulateRoutes()` method does not acquire a write lock before it updates routes. | 536552, 539039 | 352832 | - | If you change the template of the original item, the template of its cloned items is not updated.​​ | 535517 | 342776 | - | In Sitecore Forms, the checkboxes and radio buttons are not displayed correctly and cannot be used. ​​ | 534937, 540849 | 342993 | - | The `Results Count` rendering does not support the `Search Signature` parameter.​​ | 535508 | 343754 | - | ​​If you modify a `Component` under the /sitecore/templates/Branches/Feature/Experience Accelerator item, a System.NullReferenceException is thrown. | 536329 | 345408 | - | If you delete classes in the HTML, importing with Creative Exchange does not remove these classes from the components. | 535315 | 343793 | - | If sites are not added to the SXA site registry, a large number of sites can result in a long warm-up time for the server.​​ | 535722, 535910 | 346210 | - | If a partial design is stored inside nested partial design folders, multiple placeholder wrappers created.​​ | 535487 | 347552 | - | ​​If a sitemap is stored in a file, only one sitemap file is generated for the whole Sitecore instance.​ | | 334534 | - | During the SXA site scaffolding, if no `Insert Options` are defined for a template, a Powershell error occurs.​​ | 531135 | 331514 | - | If you unlock a content page, the c​omposite datasource subitems remain locked. | 529122, 531509, 537040 | 324927 | - | ​​A component that is embedded in a `Rendering Variant` will display error on a page if the component is not fully configured​. | | 333646 | - | When the URL for a facet is created, `q=` is added twice and this breaks the filter components. ​​ | 530947, 541075 | 332347 | - | A Geolocation search does not include associated content in the search.​​ | 536929 | 347831 | - | `​​resolveRenderingDatasource` is not called when trying to resolve an item query for a `Page List` component. | 537465 | 349142 | - | Creative Exchange does not to create a CSS class for the rendering inside a snippet that is defined for a partial design. | 534713 | 348752 | - | Creative Exchange can fail when it is called from the API.​​ | | 349905 | - | ​​Regular JSS sites don't have the option to create a new datasource when SXA is installed. | 537652, 539268 | 352703 | - | Delegated areas do not support Item Buckets.​​ | 537715 | 350376 | - | The `Range Slider` filter does not work when multiple fields are defined in a facet item.​​ | 538017, 541075 | 350835 | - | The `Page Selector` makes several calls when a query contains special symbols.​ | 531899 | 351678 | - | In a scaled environment, duplicate optimized files can be generated.​​ | 537204 | 351658 | - | ​​Workflows for multi-language delegated areas contain inconsistent values. | 537991 | 351396 | - | In a `Container` component that has custom placeholder settings defined, incorrect placeholder names are displayed. ​​ | 532303, 538817, 539505 | 333663 | - | ​​`FullSize mode` for YouTube videos is not available on Android devices​. | 530214, 537040 | 331135 | - | A static error page can be generated for the wrong site. | 526257, 528873 | 322199 | - | ​​Creative Exchange export that is performed on an Apple computer cannot be imported correctly on a Windows computer. | | 309580 | - | If a target hostname is specified​​, the OpenGraph `og:url` metatag is displayed without encoded spaces.​​ | 542859 | 367756 | - | ​​The `Responsive Image` renderer does not work with the `Reference` renderer​. | | 354642 | - | When the search results are empty​, the `Checklist` filter is not cleared. | 537015 | 351616 | - | ​A Page List that uses Item Query does not resolve sxa: tokens. | CS0155960, CS0217612 | 324371 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/index.md deleted file mode 100644 index 5d474cf80..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Accelerator/index.md +++ /dev/null @@ -1,119 +0,0 @@ ---- -title: "Sitecore Experience Accelerator" -description: "The Sitecore Experience Accelerator provides reusable, templated UX layouts and components to help you get up and running quickly." ---- - - - -## Sitecore Experience Accelerator 10.x - - -[Sitecore Experience Accelerator 10.4.0](/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1040)\ -[Sitecore Experience Accelerator 10.3.0](/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1030)\ -[Sitecore Experience Accelerator 10.2.0](/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1020)\ -[Sitecore Experience Accelerator 10.1.0](/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1010)\ -[Sitecore Experience Accelerator 10.0.0](/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1000) - - - - - -## Sitecore Experience Accelerator 9.x - - -[Sitecore Experience Accelerator 9.3.0](/downloads/Sitecore_Experience_Accelerator/9x/Sitecore_Experience_Accelerator_930) - - - - - -## Sitecore Experience Accelerator 1.9 - - -[Sitecore Experience Accelerator 1.9.0](/downloads/Sitecore_Experience_Accelerator/19/Sitecore_Experience_Accelerator_190) - - - - - -## Sitecore Experience Accelerator 1.8 - - -[Sitecore Experience Accelerator 1.8.1](/downloads/Sitecore_Experience_Accelerator/18/Sitecore_Experience_Accelerator_181)\ -[Sitecore Experience Accelerator 1.8.0](/downloads/Sitecore_Experience_Accelerator/18/Sitecore_Experience_Accelerator_180) - - - - - -## Sitecore Experience Accelerator 1.7 - - -[Sitecore Experience Accelerator 1.7 Update-1](/downloads/Sitecore_Experience_Accelerator/17/Sitecore_Experience_Accelerator_17_Update1)\ -[Sitecore Experience Accelerator 1.7](/downloads/Sitecore_Experience_Accelerator/17/Sitecore_Experience_Accelerator_17_Initial_Release) - - - - - -## Sitecore Experience Accelerator 1.6 - - -[Sitecore Experience Accelerator 1.6](/downloads/Sitecore_Experience_Accelerator/16/Sitecore_Experience_Accelerator_16_Initial_Release) - - - - - -## Sitecore Experience Accelerator 1.5 - - -[Sitecore Experience Accelerator 1.5](/downloads/Sitecore_Experience_Accelerator/15/Sitecore_Experience_Accelerator_15_Initial_Release) - - - - - -## Sitecore Experience Accelerator 1.4 - - -[Sitecore Experience Accelerator 1.4](/downloads/Sitecore_Experience_Accelerator/14/Sitecore_Experience_Accelerator_14_Initial_Release) - - - - - -## Sitecore Experience Accelerator 1.3 - - -[Sitecore Experience Accelerator 1.3 Update-1](/downloads/Sitecore_Experience_Accelerator/13/Sitecore_Experience_Accelerator_13_Update1)\ -[Sitecore Experience Accelerator 1.3](/downloads/Sitecore_Experience_Accelerator/13/Sitecore_Experience_Accelerator_13_Initial_Release) - - - - - -## Sitecore Experience Accelerator 1.2 - - -[Sitecore Experience Accelerator 1.2](/downloads/Sitecore_Experience_Accelerator/12/Sitecore_Experience_Accelerator_12_Initial_Release) - - - - - -## Sitecore Experience Accelerator 1.1 - - -[Sitecore Experience Accelerator 1.1](/downloads/Sitecore_Experience_Accelerator/11/Sitecore_Experience_Accelerator_11_Initial_Release) - - - - - -## Sitecore Experience Accelerator 1.0 - - -[Sitecore Experience Accelerator 1.0](/downloads/Sitecore_Experience_Accelerator/10/Sitecore_Experience_Accelerator_10_Initial_Release) - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/100/Sitecore_Experience_Platform_100/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/100/Sitecore_Experience_Platform_100/index.md deleted file mode 100644 index 646a1a209..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/100/Sitecore_Experience_Platform_100/index.md +++ /dev/null @@ -1,138 +0,0 @@ ---- -title: "Sitecore Experience Platform 10.0" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/100/Sitecore_Experience_Platform_100.aspx ---- - -Sitecore Experience Platform 10.0 focuses on product updates and enhancements that provide more development and deployment options, increase usability and improve overall performance – all centered around enabling both Marketing and IT teams equally, thus making it easier and faster to launch and evolve digital customer experiences. - -New delivery options including support for Docker, Kubernetes and new Sitecore-provided image repositories, helping delivery teams move to a continuous delivery model more easily with infrastructure-as-code deployments and more efficient solution and team onboarding. The addition of the ASP.NET Core SDK and headless rendering host architecture also provides developers with a new way of building their solutions allowing for faster development iterations. - -Other highlights include: - -- Sitecore Containers support rapid deployment and more efficient solution and team onboarding with modern Docker and Kubernetes technology. -- A new ASP.NET Core headless development option allows teams to build applications faster on the latest .NET technology. -- Sitecore CLI and Sitecore for Visual Studio bring headless serialization by combining the best of TDS and Unicorn , making it easy for teams to script content changes and move them between different environments as part of deployment processes. -- Audience analytics filters allow for deeper insights on audience engagement and segmentation to drive powerful personalization across all your channels. -- Additional HTML Email Templates for EXM provide more options when crafting emails, which translates to the quicker creation and delivery of targeted emails to customer inboxes. -- Horizon editing interface updates give marketers in-context insight across multilingual and multisite experiences. -- Stronger CMP integration supports additional field types and allows for persistent taxonomy associations when importing into XP taxonomy repositories and connecting CMP to XP. -- Salesforce Marketing Cloud (SFMC) connector updates provide new capabilities to immediately send xDB data and trigger Salesforce Marketing Cloud plans in Journey Builder. -- New marketing automation capabilities include capabilities to engage customers with automated birthday campaigns. -- Support for GDPR compliance journeys including features that make it easier to enforce and manage consent options as well as supporting the anonymization of personal information submitted via Sitecore Forms. - -See [all available versions here](/downloads/Sitecore_Experience_Platform). - -## Download options for Sitecore Container deployments - - | Resource | Description | - | --- | --- | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sxp%2F10.0.0.004346.027) | The Sitecore Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore in development and production container environments. | - | [Installation Guide for Developer Workstation with Containers](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Sitecore_XP_10_0_0_Developer_Workstation_Deployment_With_Docker-en.pdf) | This guide describes requirements for using Sitecore Containers with Docker Compose and how to deploy a developer workstation. | - | [Installation Guide for Production Environment with Kubernetes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Sitecore_XP_10_0_0_Production_Deployment_With_Kubernetes-en.pdf) | This guide describes requirements for using Sitecore Containers with Kubernetes and how to deploy containers to the Azure Kubernetes Service. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Installation Framework](/downloads/Sitecore_Installation_Framework/2x/Sitecore_Installation_Framework_230) | Follow this link to download the Sitecore Installation Framework (SIF) PowerShell module. Please refer to the Sitecore Experience Platform installation guide for further information on how to install Sitecore with SIF. | - | [Scripts for Sitecore Security database](/downloads/Scripts_for_Sitecore_Security_database) | The package contains the set of scripts for moving Sitecore Security membership provider from the Core database to individual or existing one. | - | [Sitecore Remote Distributed Deployment SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Sitecore%20remote%20distributed%20installation%20templates.zip) | The package contains Sitecore Install Framework deployment templates that can be used to deploy Sitecore Experience Platform remotely to a scalable distributed server cluster from a single workstation or server. | - -## Download options for On Premises deployment - - | Resource | Description | - | --- | --- | - | [Graphical setup package for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/WDP/Sitecore%2010.0.0%20rev.%20004346%20(Setup%20XP0%20Developer%20Workstation%20rev.%201.2.0-r64).zip) | The Sitecore Install Assistant's user interface guides you through the Sitecore XP Developer Workstation (XP Single) installation. Use it to review system requirements, install prerequisites, and complete the entire installation process. | - | [Graphical setup package for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/WDP/Sitecore%2010.0.0%20rev.%20004346%20(Setup%20XM1%20Developer%20Workstation%20rev.%201.2.0-r64).zip) | The Sitecore Install Assistant's user interface guides you through the Sitecore XM Developer Workstation (XM Scaled) installation. Use it to review system requirements, install prerequisites, and complete the entire installation process. | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/WDP/Sitecore%2010.0.0%20rev.%20004346%20(WDP%20XP0%20packages).zip) | Packages for XP Single (XP0) Instance configuration. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/WDP/Sitecore%2010.0.0%20rev.%20004346%20(WDP%20XP1%20packages).zip) | Individual packages for each of the dedicated XP Scaled (XP1) roles. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/WDP/Sitecore%2010.0.0%20rev.%20004346%20(WDP%20XM1%20packages).zip) | Individual packages for each of the dedicated XM Scaled (XM1) roles. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/WDP/Sitecore%2010.0.0%20rev.%20004346%20(WDP%20XPSingle%20packages).zip) | Packages for XP Single (XP0) Instance configuration. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/WDP/Sitecore%2010.0.0%20rev.%20004346%20(WDP%20XPScaled%20packages).zip) | Individual packages for each of the dedicated XP Scaled (XP1) roles. | - | [Packages for XM Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/WDP/Sitecore%2010.0.0%20rev.%20004346%20(WDP%20XMSingle%20packages).zip) | Packages for XM Single (XM0) Instance configuration. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/WDP/Sitecore%2010.0.0%20rev.%20004346%20(WDP%20XMScaled%20packages).zip) | Individual packages for each of the dedicated XM Scaled (XM1) roles. | - | [Sitecore Azure Toolkit Resources](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Sitecore%20Azure%20Toolkit%20Resources%2010.0.0%20rev.%20004346.zip) | Sitecore Azure Toolkit Resources package. | - -## Download options for Content Delivery Network CDN - - | Resource | Description | - | --- | --- | - | [Package for XM Scaled and XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Sitecore.Content.Delivery.Network.Provider.1.0.0-r00010.scwdp.zip) | CDN package for both XM Scaled and XP Scaled Content Delivery (CD) role. | - -## Download options for Blob Storage - - | Resource | Description | - | --- | --- | - | [Package for XM and XP](/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_200) | Blob Storage Package for XM Scaled, XP Scaled, XM Developer, XP Developer. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Experience_Platform/100/Sitecore_Experience_Platform_100/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known issues](https://kb.sitecore.net/articles/661975) | Choose this link to access the Sitecore Knowledge Base. | - | [Installation Guide for the XM Scaled topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Installation_Guide_for_the_XM_Scaled_topology-10.0.0.pdf) | Explains how to install the Sitecore Experience Management (XM1) topology to run the Content Delivery (CD) and Content Management (CM) server roles, and the Sitecore Identity server. This topology does not support xDB and xConnect. | - | [Installation Guide for the XP Scaled topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Installation_Guide_for_the_XP_Scaled_topology-10.0.0.pdf) | Explains how to install the fully featured Sitecore Experience Platform Installation (XP1) topology. This topology can be configured to run separated server roles. | - | [Quick Installation Guide for a Developer Workstation](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Quick_Installation_Guide_for_a_Developer_Workstation-10.0.0.pdf) | Explains how to install the XP Single (XP0) topology on a workstation for development and testing purposes. | - | [Upgrade Guide (8.1.0-9.0.1 to 10.0.0)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Upgrade_Guide_Sitecore_10.0.0_from_8.1.0-9.0.1.pdf) | Explains how to directly upgrade from Sitecore versions 8.1.0 through 9.0.1 to 10.0.0. | - | [Upgrade Guide (9.0.2 to 10.0.0)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Upgrade_Guide_Sitecore_10.0.0_from_9.0.2_or_later.pdf) | Explains how to directly upgrade from Sitecore 9.0.2 and later to 10.0.0. | - | [Developer Documentation](https://doc.sitecore.com/xp/en/developers) | Link to Sitecore developer documentation. | - | [Assembly list](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Sitecore.Platform.Assemblies%2010.0.0%20rev.%20004346.zip) | Complete list of assemblies shipped with this release. | - -## Modules - - | Resource | Description | - | --- | --- | - | [Sitecore CLI](/downloads/Sitecore_CLI/2x/Sitecore_CLI_200) | Download files and release information for latest compatible version of Sitecore CLI. | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales](/downloads/Dynamics_CRM_Connect/5x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_500) | Download files and release information for latest compatible version of Sitecore Connect for Microsoft Dynamics 365 for Sales. | - | [Sitecore Connect for Salesforce CRM](/downloads/Salesforce_Connect/5x/Sitecore_Connect_for_Salesforce_CRM_500) | Download files and release information for latest compatible version of Sitecore Connect for Salesforce CRM. | - | [Sitecore Connect for Salesforce Marketing Cloud](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_50) | Download files and release information for latest compatible version of Sitecore Connect™ for Salesforce Marketing Cloud. | - | [Sitecore Connect for Sitecore CMP](/downloads/Sitecore_Connect_for_Sitecore_CMP/30/Sitecore_Connect_for_Sitecore_CMP_300) | Download files and release information for latest compatible version of Sitecore Connect™ for Sitecore CMP. | - | [Sitecore Data Exchange Framework](/downloads/Data_Exchange_Framework/5x/Data_Exchange_Framework_500) | Download files and release information for latest compatible version of Sitecore Data Exchange Framework. | - | [Sitecore Experience Accelerator](/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1000) | Download files and release information for latest compatible version of Sitecore Experience Accelerator. | - | [Sitecore Headless Rendering](/downloads/Sitecore_Headless_Rendering/150/Sitecore_Headless_Rendering_1501) | Download files and release information for latest compatible version of Sitecore Headless Rendering. | - | [Sitecore Horizon](/downloads/Sitecore_Horizon/100/Sitecore_Horizon_1000) | Sitecore Horizon is the next generation Experience Management product for the Sitecore Experience Platform™. | - | [Sitecore Identity](/downloads/Sitecore_Identity/5x/Sitecore_Identity_500) | Download files and release information for latest compatible version of Sitecore Identity. | - | [Sitecore JavaScript Services](/downloads/Sitecore_JavaScript_Services/150/Sitecore_JavaScript_Services_1501) | Download files and release information for latest compatible version of Sitecore JavaScript Services. | - | [Sitecore Publishing Service Module](/downloads/Sitecore_Publishing_Service_Module/10x/Sitecore_Publishing_Service_Module_1000) | Download files and release information for latest compatible version of Sitecore Publishing Service Module. | - | [Sitecore xDB Data Migration Tool](/downloads/Sitecore_xDB_Data_Migration_Tool/5x/xDB_Data_Migration_Tool_500) | Download files and release information for latest compatible version of Sitecore xDB Data Migration Tool. | - -## Upgrade options - - | Resource | Description | - | --- | --- | - | [Sitecore update package for 8.1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Upgrade/Sitecore%2010.0.0%20rev.%20004346%20(update%20package%20for%208.1).zip) | Download files needed for the upgrade process when upgrading from Sitecore 8.1. | - | [Sitecore update package for 8.2](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Upgrade/Sitecore%2010.0.0%20rev.%20004346%20(update%20package%20for%208.2).zip) | Download files needed for the upgrade process when upgrading from Sitecore 8.2. | - | [Sitecore update package for 9.x](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Upgrade/Sitecore%2010.0.0%20rev.%20004346%20(update%20package%20for%209.x).zip) | Download files needed for the upgrade process when upgrading from Sitecore 9.x. | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Upgrade/Sitecore%2010.0.0%20rev.%20004346%20(upgrade%20files).zip) | This package contains configuration files and database scripts for the upgrade. | - | [Sitecore Update Installation Wizard for 8.x-9.0](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Update1/Secure/Sitecore%20Update%20Installation%20Wizard%204.0.1%20rev.%2000153%20for%208.x-9.0.zip) | Sitecore Update Installation Wizard allows developers to update existing Sitecore Experience Platform using Sitecore update packages. | - | [Sitecore Update Installation Wizard for 9.1](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Update1/Secure/Sitecore%20Update%20Installation%20Wizard%204.0.1%20rev.%2000153%20for%209.1.zip) | Sitecore Update Installation Wizard allows developers to update existing Sitecore Experience Platform using Sitecore update packages. | - -## Client translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Sitecore%2010.0.0%20rev.%20004346%20(da-DK).zip) | Danish language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/100/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Sitecore%2010.0.0%20rev.%20004346%20(de-DE).zip) | German language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/100/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Sitecore%2010.0.0%20rev.%20004346%20(ja-JP).zip) | Japanese language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/100/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/100/Sitecore%20Experience%20Platform%20100/Secure/Sitecore%2010.0.0%20rev.%20004346%20(zh-CN).zip) | Chinese language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/100/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [Chinese GeoIP Localization Pack](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/90/Sitecore%20Experience%20Platform%2090%20Initial%20Release/Secure/GeoIp%20Location%20China%20Localization%20Pack%201.0.0%20rev.%20180226.zip) | The pack provides enhanced region detection for China. The pack should be installed as a regular Sitecore module. | - -## Usage policies - - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - - - - Please note that as part of your system upgrade to Sitecore Version 10.0, Sitecore may collect additional information such as product version, number of site visits, generic hardware and software information, and recovery actions. This information will be used to help us to optimize your experience. All data will be processed in accordance with Sitecore’s privacy policy [here](https://www.sitecore.com/trust/privacy-policy). Should you have any queries or wish to discuss this, [please refer to our FAQ](https://kb.sitecore.net/articles/424335), or contact your Sitecore Account Manager. - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/100/Sitecore_Experience_Platform_100_Update3/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/100/Sitecore_Experience_Platform_100_Update3/Release_Notes.md deleted file mode 100644 index 07a63be10..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/100/Sitecore_Experience_Platform_100_Update3/Release_Notes.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/100/Sitecore_Experience_Platform_100_Update3/Release_Notes ---- - -**October 2021 – released Sitecore Experience Platform 10.0.3** - -This is a product update. Sitecore recommends that you upgrade to this release if it includes fixes that meet the specific needs of your organization. If this release does not include new functionality or specific fixes that your organization requires, you may benefit from waiting to upgrade until Sitecore releases an update that is relevant for your organization. This is especially true in production environments. - -## Highlights - -Sitecore Experience Platform 10.0.3 includes: - -- ​​​​Sitecore Identity Server 6.0.0 is based on .NET Core 3.1 and the updated base libraries. This ensures that our customers receive security updates promptly. - -## New features/improvements - - | Context | Description | Ref. ID | - | --- | --- | --- | - | Platform | ​​Sitecore Identity Server 6.0.0 is based on .NET Core 3.1 and the updated base libraries. This ensures that our customers receive security updates promptly. | 442201 | - | Installation | ​Sitecore Installation Assistant 1.2.5​ supports Sitecore XP 10.0.3.​​​​​ | 498342 | - | Containers | The Sitecore-id​ in ​the Sitecore XP 10.0.3 container image​​ has been updated to sitecore-id6. | 498689 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101/index.md deleted file mode 100644 index c090466d6..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101/index.md +++ /dev/null @@ -1,132 +0,0 @@ ---- -title: "Sitecore Experience Platform 10.1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101.aspx ---- - -Sitecore Experience Platform 10.1 focuses on product updates and enhancements that improve time-to-market and increase usability and decrease infrastructure costs – all centered around enabling both Marketing and IT teams equally, thus making it easier and faster to launch and evolve digital customer experiences. - -Other highlights include: - -- Horizon Enhancements providing new publishing and editing capabilities while reducing the need to switch UIs. -- Global Search in Content and Pages enabling search within Horizon and making search more efficient. -- Additional Field type support providing the ability to use Droplinks and Checklists within Horizon. -- Rules-based content profiling improves marketer productivity with automatic behavioral-based profiling of content based on content tags and taxonomy. -- Stronger SXA and Horizon integration exposing rendering parameters, components styles, and grid configuration out-of-the-box. -- Simple Send Email action for sending emails without utilizing EXM and incorporating information from Forms fields. -- Improved Upgrade Experience by storing default content items outside of the database, removing the need for applying Update packages. -- Data Purge Tool for XDB provides more control of storage resources and can be used to reduce hosting costs. -- Reporting role consolidation enables further hosting cost reduction by consolidation the Reporting role with the CM role. -- New Next.js SDK and sample site are now available for the Sitecore JavaScript SDKs, providing a Jamstack rendering option that improves page performance and site scalability. - -See [all available versions here](/downloads/Sitecore_Experience_Platform). - -## Download options for Sitecore Container deployments - - | Resource | Description | - | --- | --- | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sxp%2F10.1.0.005207.309) | The Sitecore Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore in development and production container environments. | - | [Installation Guide for Developer Workstation with Containers](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/Sitecore_XP_10_1_0_Developer_Workstation_Deployment_With_Docker-en.pdf) | This guide describes how to use Sitecore Containers with Docker Compose to deploy a developer workstation. | - | [Installation Guide for Production Environment with Kubernetes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/Sitecore_XP_10_1_0_Production_Deployment_With_Kubernetes-en.pdf) | This guide describes how to use Sitecore Containers with Kubernetes to deploy containers to the Azure Kubernetes Service. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Installation Framework](/downloads/Sitecore_Installation_Framework/2x/Sitecore_Installation_Framework_230) | Follow this link to download the Sitecore Installation Framework (SIF) PowerShell module. Please refer to the Sitecore Experience Platform installation guide for further information on how to install Sitecore with SIF. | - | [Scripts for Sitecore Security database](/downloads/Scripts_for_Sitecore_Security_database) | The package contains the set of scripts for moving Sitecore Security membership provider from the Core database to individual or existing one. | - | [Sitecore Remote Distributed Deployment SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Sitecore%20remote%20distributed%20installation%20templates.zip) | The package contains Sitecore Install Framework deployment templates that can be used to deploy Sitecore Experience Platform remotely to a scalable distributed server cluster from a single workstation or server. | - -## Download options for On Premises deployment - - | Resource | Description | - | --- | --- | - | [Graphical setup package for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/WDP/Sitecore%2010.1.0%20rev.%20005207%20(Setup%20XP0%20Developer%20Workstation%20rev.%201.2.2-r1).zip) | The Sitecore Install Assistant's user interface guides you through the Sitecore XP Developer Workstation (XP Single) installation. Use it to review system requirements, install prerequisites, and complete the entire installation process. | - | [Graphical setup package for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/WDP/Sitecore%2010.1.0%20rev.%20005207%20(Setup%20XM1%20Developer%20Workstation%20rev.%201.2.2-r1).zip) | The Sitecore Install Assistant's user interface guides you through the Sitecore XM Developer Workstation (XM Scaled) installation. Use it to review system requirements, install prerequisites, and complete the entire installation process. | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/WDP/Sitecore%2010.1.0%20rev.%20005207%20(WDP%20XP0%20packages).zip) | Packages for XP Single (XP0) Instance configuration. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/WDP/Sitecore%2010.1.0%20rev.%20005207%20(WDP%20XP1%20packages).zip) | Individual packages for each of the dedicated XP Scaled (XP1) roles. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/WDP/Sitecore%2010.1.0%20rev.%20005207%20(WDP%20XM1%20packages).zip) | Individual packages for each of the dedicated XM Scaled (XM1) roles. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/WDP/Sitecore%2010.1.0%20rev.%20005207%20(WDP%20XPSingle%20packages).zip) | Packages for XP Single (XP0) Instance configuration. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/WDP/Sitecore%2010.1.0%20rev.%20005207%20(WDP%20XPScaled%20packages).zip) | Individual packages for each of the dedicated XP Scaled (XP1) roles. | - | [Packages for XM Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/WDP/Sitecore%2010.1.0%20rev.%20005207%20(WDP%20XMSingle%20packages).zip) | Packages for XM Single (XM0) Instance configuration. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/WDP/Sitecore%2010.1.0%20rev.%20005207%20(WDP%20XMScaled%20packages).zip) | Individual packages for each of the dedicated XM Scaled (XM1) roles. | - | [Sitecore Azure Toolkit Resources](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/Sitecore%20Azure%20Toolkit%20Resources%2010.1.0%20rev.%20005207.zip) | Sitecore Azure Toolkit Resources package. | - -## Download options for Content Delivery Network CDN - - | Resource | Description | - | --- | --- | - | [Package for XM Scaled and XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Sitecore.Content.Delivery.Network.Provider.1.0.0-r00010.scwdp.zip) | CDN package for both XM Scaled and XP Scaled Content Delivery (CD) role. | - -## Download options for Blob Storage - - | Resource | Description | - | --- | --- | - | [Package for XM and XP](/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_301) | Blob Storage Package for XM Scaled, XP Scaled, XM Developer, XP Developer. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known issues](https://kb.sitecore.net/articles/545609) | Choose this link to access the Sitecore Knowledge Base. | - | [Sitecore Installation Framework (SIF) Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/Sitecore_Installation_Framework_Configuration_Guide-SC-10.1.0.pdf) | Explains how to use the SIF Microsoft PowerShell module to deploy and configure a Sitecore topology. | - | [Installation Guide for the XM Scaled topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/Installation_Guide_for_the_XM_Scaled_topology-10.1.0.pdf) | Explains how to install the Sitecore Experience Management (XM1) topology to run the Content Delivery (CD) and Content Management (CM) server roles, and the Sitecore Identity server. This topology does not support xDB and xConnect. | - | [Installation Guide for the XP Scaled topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/Installation_Guide_for_the_XP_Scaled_topology-10.1.0.pdf) | Explains how to install the fully featured Sitecore Experience Platform Installation (XP1) topology. This topology can be configured to run separated server roles. | - | [Quick Installation Guide for a Developer Workstation](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/Quick_Installation_Guide_for_a_Developer_Workstation-10.1.0.pdf) | Explains how to install the XP Single (XP0) topology on a workstation for development and testing purposes. | - | [Upgrade Container Deployment Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/Sitecore_Container_Upgrade_Deployment_Guide-SC-10.1.0.pdf) | Explains how to use the Sitecore Container Deployment Package to upgrade the SQL Server databases of an existing Sitecore XP 10.0.X installation to Sitecore XP 10.1.0. | - | [Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/Upgrade_Guide_Sitecore_XP-10.1.0.pdf) | Explains how to directly upgrade from Sitecore XP 8.1.0 or later to Sitecore XP 10.1.0. | - | [Developer Documentation](https://doc.sitecore.com/xp/en/developers) | Link to Sitecore developer documentation. | - | [Assembly list](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/Sitecore.Platform.Assemblies%2010.1.0%20rev.%20005207.zip) | Complete list of assemblies shipped with this release. | - -## Modules - - | Resource | Description | - | --- | --- | - | [Sitecore CLI](/downloads/Sitecore_CLI/3x/Sitecore_CLI_300) | Download files and release information for latest compatible version of Sitecore CLI. | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales](/downloads/Dynamics_CRM_Connect/6x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_600) | Download files and release information for latest compatible version of Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Sitecore Connect for Salesforce CRM](/downloads/Salesforce_Connect/6x/Sitecore_Connect_for_Salesforce_CRM_600) | Download files and release information for latest compatible version of Sitecore Connect™ for Salesforce CRM. | - | [Sitecore Connect for Salesforce Marketing Cloud](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60) | Download files and release information for latest compatible version of Sitecore Connect™ for Salesforce Marketing Cloud. | - | [Sitecore Connect for Content Hub](/downloads/Sitecore_Connect_for_Content_Hub/4x/Sitecore_Connect_for_Content_Hub_400) | Download files and release information for latest compatible version of Sitecore Connect™ for Content Hub. | - | [Sitecore Data Exchange Framework](/downloads/Data_Exchange_Framework/6x/Data_Exchange_Framework_600) | Download files and release information for latest compatible version of Sitecore Data Exchange Framework. | - | [Sitecore Experience Accelerator](/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1010) | Download files and release information for latest compatible version of Sitecore Experience Accelerator. | - | [Sitecore Headless Rendering](/downloads/Sitecore_Headless_Rendering/16x/Sitecore_Headless_Rendering_1600) | Download files and release information for latest compatible version of Sitecore Headless Rendering. | - | [Sitecore Horizon](/downloads/Sitecore_Horizon/100/Sitecore_Horizon_1010) | Sitecore Horizon is the next generation Experience Management product for the Sitecore Experience Platform™. | - | [Sitecore Identity](/downloads/Sitecore_Identity/5x/Sitecore_Identity_510) | Download files and release information for latest compatible version of Sitecore Identity. | - | [Sitecore Publishing Service Module](/downloads/Sitecore_Publishing_Service_Module/10x/Sitecore_Publishing_Service_Module_1010) | Download files and release information for latest compatible version of Sitecore Publishing Service Module. | - -## Upgrade options - - | Resource | Description | - | --- | --- | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/Sitecore%2010.1.0%20rev.%20005207%20(upgrade%20files).zip) | This package contains configuration files and database scripts for the upgrade. | - | [Sitecore UpdateApp Tool](/downloads/Sitecore_UpdateApp_Tool/1x/Sitecore_UpdateApp_Tool_110) | Updates the Core, Master, and Web databases. | - -## Client translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/Translations/Sitecore%2010.1.0%20rev.%20005207%20(da-DK).zip) | Danish language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/Translations/Sitecore%2010.1.0%20rev.%20005207%20(de-DE).zip) | German language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/Translations/Sitecore%2010.1.0%20rev.%20005207%20(ja-JP).zip) | Japanese language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101/Secure/Translations/Sitecore%2010.1.0%20rev.%20005207%20(zh-CN).zip) | Chinese language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Chinese GeoIP Localization Pack](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/90/Sitecore%20Experience%20Platform%2090%20Initial%20Release/Secure/GeoIp%20Location%20China%20Localization%20Pack%201.0.0%20rev.%20180226.zip) | The pack provides enhanced region detection for China. The pack should be installed as a regular Sitecore module. | - -## Usage policies - - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - - - - Please note that as part of your system upgrade to Sitecore Version 10.1, Sitecore may collect additional information such as product version, number of site visits, generic hardware and software information, and recovery actions. This information will be used to help us to optimize your experience. All data will be processed in accordance with Sitecore’s privacy policy [here](https://www.sitecore.com/trust/privacy-policy). Should you have any queries or wish to discuss this, [please refer to our FAQ](https://kb.sitecore.net/articles/424335), or contact your Sitecore Account Manager. - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update1/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update1/index.md deleted file mode 100644 index 599659750..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update1/index.md +++ /dev/null @@ -1,118 +0,0 @@ ---- -title: "Sitecore Experience Platform 10.1 Update-1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update1.aspx ---- - -Update-1 to Sitecore Experience Platform 10.1. - -See [all available versions here](/downloads/Sitecore_Experience_Platform). - -## Download options for Sitecore Container deployments - - | Resource | Description | - | --- | --- | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sxp%2F10.1.1.005862.645) | The Sitecore Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore in development and production container environments. | - | [Installation Guide for Developer Workstation with Containers](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/Sitecore_XP_10_1_1_Developer_Workstation_Deployment_With_Docker-en.pdf) | This guide describes how to use Sitecore Containers with Docker Compose to deploy a developer workstation. | - | [Installation Guide for Production Environment with Kubernetes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/Sitecore_XP_10_1_1_Production_Deployment_With_Kubernetes-en.pdf) | This guide describes how to use Sitecore Containers with Kubernetes to deploy containers to the Azure Kubernetes Service. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Installation Framework](/downloads/Sitecore_Installation_Framework/2x/Sitecore_Installation_Framework_230) | Follow this link to download the Sitecore Installation Framework (SIF) PowerShell module. Please refer to the Sitecore Experience Platform installation guide for further information on how to install Sitecore with SIF. | - | [Scripts for Sitecore Security database](/downloads/Scripts_for_Sitecore_Security_database) | The package contains the set of scripts for moving Sitecore Security membership provider from the Core database to individual or existing one. | - | [Sitecore Remote Distributed Deployment SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Sitecore%20remote%20distributed%20installation%20templates.zip) | The package contains Sitecore Install Framework deployment templates that can be used to deploy Sitecore Experience Platform remotely to a scalable distributed server cluster from a single workstation or server. | - -## Download options for On Premises deployment - - | Resource | Description | - | --- | --- | - | [Graphical setup package for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/WDP/Sitecore%2010.1.1%20rev.%20005862%20(Setup%20XP0%20Developer%20Workstation%20rev.%201.2.3-r6).zip) | The Sitecore Install Assistant's user interface guides you through the Sitecore XP Developer Workstation (XP Single) installation. Use it to review system requirements, install prerequisites, and complete the entire installation process. | - | [Graphical setup package for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/WDP/Sitecore%2010.1.1%20rev.%20005862%20(Setup%20XM1%20Developer%20Workstation%20rev.%201.2.3-r6).zip) | The Sitecore Install Assistant's user interface guides you through the Sitecore XM Developer Workstation (XM Scaled) installation. Use it to review system requirements, install prerequisites, and complete the entire installation process. | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/WDP/Sitecore%2010.1.1%20rev.%20005862%20(WDP%20XP0%20packages).zip) | Packages for XP Single (XP0) Instance configuration. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/WDP/Sitecore%2010.1.1%20rev.%20005862%20(WDP%20XP1%20packages).zip) | Individual packages for each of the dedicated XP Scaled (XP1) roles. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/WDP/Sitecore%2010.1.1%20rev.%20005862%20(WDP%20XM1%20packages).zip) | Individual packages for each of the dedicated XM Scaled (XM1) roles. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/WDP/Sitecore%2010.1.1%20rev.%20005862%20(WDP%20XPSingle%20packages).zip) | Packages for XP Single (XP0) Instance configuration. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/WDP/Sitecore%2010.1.1%20rev.%20005862%20(WDP%20XPScaled%20packages).zip) | Individual packages for each of the dedicated XP Scaled (XP1) roles. | - | [Packages for XM Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/WDP/Sitecore%2010.1.1%20rev.%20005862%20(WDP%20XMSingle%20packages).zip) | Packages for XM Single (XM0) Instance configuration. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/WDP/Sitecore%2010.1.1%20rev.%20005862%20(WDP%20XMScaled%20packages).zip) | Individual packages for each of the dedicated XM Scaled (XM1) roles. | - | [Sitecore Azure Toolkit Resources](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/Sitecore%20Azure%20Toolkit%20Resources%2010.1.1%20rev.%20005862.zip) | Sitecore Azure Toolkit Resources package. | - -## Download options for Content Delivery Network CDN - - | Resource | Description | - | --- | --- | - | [Package for XM Scaled and XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Sitecore.Content.Delivery.Network.Provider.1.0.0-r00010.scwdp.zip) | CDN package for both XM Scaled and XP Scaled Content Delivery (CD) role. | - -## Download options for Blob Storage - - | Resource | Description | - | --- | --- | - | [Package for XM and XP](/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_301) | Blob Storage Package for XM Scaled, XP Scaled, XM Developer, XP Developer. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update1/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known issues](https://kb.sitecore.net/articles/545609) | Choose this link to access the Sitecore Knowledge Base. | - | [Sitecore Installation Framework (SIF) Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/Sitecore_Installation_Framework_Configuration_Guide-SC-10.1.1.pdf) | Explains how to use the SIF Microsoft PowerShell module to deploy and configure a Sitecore topology. | - | [Installation Guide for the XM Scaled topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/Installation_Guide_for_the_XM_Scaled_Topology-10.1.1.pdf) | Explains how to install the Sitecore Experience Management (XM1) topology to run the Content Delivery (CD) and Content Management (CM) server roles, and the Sitecore Identity server. This topology does not support xDB and xConnect. | - | [Installation Guide for the XP Scaled topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/Installation_Guide_for_the_XP_Scaled_topology-10.1.1.pdf) | Explains how to install the fully featured Sitecore Experience Platform Installation (XP1) topology. This topology can be configured to run separated server roles. | - | [Quick Installation Guide for a Developer Workstation](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/Quick_Installation_Guide_for_a_Developer_Workstation-10.1.1.pdf) | Explains how to install the XP Single (XP0) topology on a workstation for development and testing purposes. | - | [Upgrade Guide for Updates](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/Update_Guide-for_Sitecore-XP-10.1.X.pdf) | Explains how to update to the latest release in the Sitecore 10.1.X series. | - | [Developer Documentation](https://doc.sitecore.com/xp/en/developers) | Link to Sitecore developer documentation. | - | [Assembly list](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/Sitecore.Platform.Assemblies%2010.1.1%20rev.%20005862.zip) | Complete list of assemblies shipped with this release. | - -## Modules - - | Resource | Description | - | --- | --- | - | [Sitecore CLI](/downloads/Sitecore_CLI/3x/Sitecore_CLI_300) | Download files and release information for latest compatible version of Sitecore CLI. | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales](/downloads/Dynamics_CRM_Connect/6x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_600) | Download files and release information for latest compatible version of Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Sitecore Connect for Salesforce CRM](/downloads/Salesforce_Connect/6x/Sitecore_Connect_for_Salesforce_CRM_600) | Download files and release information for latest compatible version of Sitecore Connect™ for Salesforce CRM. | - | [Sitecore Connect for Salesforce Marketing Cloud](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60) | Download files and release information for latest compatible version of Sitecore Connect™ for Salesforce Marketing Cloud. | - | [Sitecore Connect for Content Hub](/downloads/Sitecore_Connect_for_Content_Hub/4x/Sitecore_Connect_for_Content_Hub_400) | Download files and release information for latest compatible version of Sitecore Connect™ for Content Hub. | - | [Sitecore Data Exchange Framework](/downloads/Data_Exchange_Framework/6x/Data_Exchange_Framework_600) | Download files and release information for latest compatible version of Sitecore Data Exchange Framework. | - | [Sitecore Experience Accelerator](/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1010) | Download files and release information for latest compatible version of Sitecore Experience Accelerator. | - | [Sitecore Headless Rendering](/downloads/Sitecore_Headless_Rendering/16x/Sitecore_Headless_Rendering_1600) | Download files and release information for latest compatible version of Sitecore Headless Rendering. | - | [Sitecore Horizon](/downloads/Sitecore_Horizon/100/Sitecore_Horizon_1011) | Sitecore Horizon is the next generation Experience Management product for the Sitecore Experience Platform™. | - | [Sitecore Identity](/downloads/Sitecore_Identity/5x/Sitecore_Identity_511) | Download files and release information for latest compatible version of Sitecore Identity. | - | [Sitecore Publishing Service Module](/downloads/Sitecore_Publishing_Service_Module/10x/Sitecore_Publishing_Service_Module_1010) | Download files and release information for latest compatible version of Sitecore Publishing Service Module. | - -## Upgrade options - - | Resource | Description | - | --- | --- | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/Sitecore%2010.1.1%20rev.%20005862%20(upgrade%20files).zip) | This package contains configuration files and database scripts for the upgrade. | - | [Sitecore UpdateApp Tool](/downloads/Sitecore_UpdateApp_Tool/1x/Sitecore_UpdateApp_Tool_110) | Updates the Core, Master, and Web databases. | - -## Client translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/Translations/Sitecore%2010.1.1%20rev.%20005862%20(da-DK).zip) | Danish language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/Translations/Sitecore%2010.1.1%20rev.%20005862%20(de-DE).zip) | German language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/Translations/Sitecore%2010.1.1%20rev.%20005862%20(ja-JP).zip) | Japanese language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update1/Secure/Translations/Sitecore%2010.1.1%20rev.%20005862%20(zh-CN).zip) | Chinese language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Chinese GeoIP Localization Pack](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/90/Sitecore%20Experience%20Platform%2090%20Initial%20Release/Secure/GeoIp%20Location%20China%20Localization%20Pack%201.0.0%20rev.%20180226.zip) | The pack provides enhanced region detection for China. The pack should be installed as a regular Sitecore module. | - -## Usage policies - - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - - - - Please note that as part of your system upgrade to Sitecore Version 10.1, Sitecore may collect additional information such as product version, number of site visits, generic hardware and software information, and recovery actions. This information will be used to help us to optimize your experience. All data will be processed in accordance with Sitecore’s privacy policy [here](https://www.sitecore.com/trust/privacy-policy). Should you have any queries or wish to discuss this, [please refer to our FAQ](https://kb.sitecore.net/articles/424335), or contact your Sitecore Account Manager. - - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update2/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update2/Release_Notes.md deleted file mode 100644 index b3e1c4557..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update2/Release_Notes.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update2/Release_Notes ---- - -**October 2021 – released Sitecore Experience Platform 10.1.2 rev. 006578** - -This is a product update. Sitecore recommends that you upgrade to this release to apply the fixes and improvements implemented since the initial release of this product version. - -## Highlights - -Sitecore Experience Platform 10.1.2 includes: - -- ​​​​Sitecore Identity Server 6.0.0 is based on .NET Core 3.1 and the updated base libraries. This ensures that our customers receive security updates promptly. - -## New features/improvements - - | Context | Description | ADO no. | - | --- | --- | --- | - | Platform | ​​Sitecore Identity Server 6.0.0 is based on .NET Core 3.1 and the updated base libraries. This ensures that our customers receive security updates promptly. | 442201 | - -## Resolved issues - -The following issues have been fixed: - - | Context | Description | ADO no. | - | --- | --- | --- | - | Experience Editor | ​​​​If you select an item in the content tree in Experience Editor in a multi-site setup, `​Context.Site` is not resolved correctly. | 465667 | - | Experience Editor | In the Experience Editor, ​Context.Site is not resolved correctly.​ | 458586 | - | Experience Editor | The `CheckRevision` processor does not comapre versions correctly.​ | 76398 | - | IP Geolocation | ​​The GeoIP personalization rules do not working correctly with a load balancer/proxy. | 479352 | - | Platform | If you try to view a media item that is locked by another user, ​​an exception occurs. | 476178 | - | Platform | ​In a `Rich Text` field, if you enter a text fragment that contains a link with single left parentheses,a regex exception is thrown. | 489112 | - | Platform | ​In the Content Editor, you can insert JavaScript into a `Rich Text` field when the `HtmlEditor.RemoveScripts` setting is set to `true`. | 492315 | - | Platform | ​​Telemetry tracking can affect application performance because of compatibility issues related to the `System.Security.Cryptography.Algorithms` library. | 485287 | - | Sitecore Forms | ​​​​​The `Session is expired` message is shown when you submit a form. | 479471 | - | Sitecore Forms | ​​​​If you use the `FormItemTreeView Parameters` template, a selected​ checkbox is incorrectly cleared when you design a form. | 476128 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update2/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update2/index.md deleted file mode 100644 index 3d7df56c2..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update2/index.md +++ /dev/null @@ -1,118 +0,0 @@ ---- -title: "Sitecore Experience Platform 10.1 Update-2" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update2.aspx ---- - -Update-2 to Sitecore Experience Platform 10.1. - -See [all available versions here](/downloads/Sitecore_Experience_Platform). - -## Download options for Sitecore Container deployments - - | Resource | Description | - | --- | --- | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sxp%2F10.1.2.006578.1247) | The Sitecore Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore in development and production container environments. | - | [Installation Guide for Developer Workstation with Containers](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/Sitecore_XP_10_1_2_Developer_Workstation_Deployment_With_Docker-en.pdf) | This guide describes how to use Sitecore Containers with Docker Compose to deploy a developer workstation. | - | [Installation Guide for Production Environment with Kubernetes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/Sitecore_XP_10_1_2_Production_Deployment_With_Kubernetes-en.pdf) | This guide describes how to use Sitecore Containers with Kubernetes to deploy containers to the Azure Kubernetes Service. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - | [Upgrade Container Deployment Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/SC-XP-10.1.2-Upgrade-Container-Deployment-Guide-en.pdf) | Explains how to use the Sitecore Container Deployment Package to upgrade the SQL Server databases of an existing Sitecore XP 10.0.X installation to Sitecore XP 10.1.2. | - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Installation Framework](/downloads/Sitecore_Installation_Framework/2x/Sitecore_Installation_Framework_230) | Follow this link to download the Sitecore Installation Framework (SIF) PowerShell module. Please refer to the Sitecore Experience Platform installation guide for further information on how to install Sitecore with SIF. | - | [Scripts for Sitecore Security database](/downloads/Scripts_for_Sitecore_Security_database) | The package contains the set of scripts for moving Sitecore Security membership provider from the Core database to individual or existing one. | - | [Sitecore Remote Distributed Deployment SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Sitecore%20remote%20distributed%20installation%20templates.zip) | The package contains Sitecore Install Framework deployment templates that can be used to deploy Sitecore Experience Platform remotely to a scalable distributed server cluster from a single workstation or server. | - -## Download options for On Premises deployment - - | Resource | Description | - | --- | --- | - | [Graphical setup package for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/WDP/Sitecore%2010.1.2%20rev.%20006578%20(Setup%20XP0%20Developer%20Workstation%20rev.%201.3.2-r1).zip) | The Sitecore Install Assistant's user interface guides you through the Sitecore XP Developer Workstation (XP Single) installation. Use it to review system requirements, install prerequisites, and complete the entire installation process. | - | [Graphical setup package for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/WDP/Sitecore%2010.1.2%20rev.%20006578%20(Setup%20XM1%20Developer%20Workstation%20rev.%201.3.2-r1).zip) | The Sitecore Install Assistant's user interface guides you through the Sitecore XM Developer Workstation (XM Scaled) installation. Use it to review system requirements, install prerequisites, and complete the entire installation process. | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/WDP/Sitecore%2010.1.2%20rev.%20006578%20(WDP%20XP0%20packages).zip) | Packages for XP Single (XP0) Instance configuration. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/WDP/Sitecore%2010.1.2%20rev.%20006578%20(WDP%20XP1%20packages).zip) | Individual packages for each of the dedicated XP Scaled (XP1) roles. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/WDP/Sitecore%2010.1.2%20rev.%20006578%20(WDP%20XM1%20packages).zip) | Individual packages for each of the dedicated XM Scaled (XM1) roles. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/WDP/Sitecore%2010.1.2%20rev.%20006578%20(WDP%20XPSingle%20packages).zip) | Packages for XP Single (XP0) Instance configuration. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/WDP/Sitecore%2010.1.2%20rev.%20006578%20(WDP%20XPScaled%20packages).zip) | Individual packages for each of the dedicated XP Scaled (XP1) roles. | - | [Packages for XM Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/WDP/Sitecore%2010.1.2%20rev.%20006578%20(WDP%20XMSingle%20packages).zip) | Packages for XM Single (XM0) Instance configuration. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/WDP/Sitecore%2010.1.2%20rev.%20006578%20(WDP%20XMScaled%20packages).zip) | Individual packages for each of the dedicated XM Scaled (XM1) roles. | - | [Sitecore Azure Toolkit Resources](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/Sitecore%20Azure%20Toolkit%20Resources%2010.1.2%20rev.%20006578.zip) | Sitecore Azure Toolkit Resources package. | - -## Download options for Content Delivery Network CDN - - | Resource | Description | - | --- | --- | - | [Package for XM Scaled and XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Sitecore.Content.Delivery.Network.Provider.1.0.0-r00010.scwdp.zip) | CDN package for both XM Scaled and XP Scaled Content Delivery (CD) role. | - -## Download options for Blob Storage - - | Resource | Description | - | --- | --- | - | [Package for XM and XP](/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_301) | Blob Storage Package for XM Scaled, XP Scaled, XM Developer, XP Developer. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update2/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known issues](https://kb.sitecore.net/articles/545609) | Choose this link to access the Sitecore Knowledge Base. | - | [Sitecore Installation Framework (SIF) Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/SC-XP-10.1.2-SIF-2.3.0-Configuration-Guide-en.pdf) | Explains how to use the SIF Microsoft PowerShell module to deploy and configure a Sitecore topology. | - | [Installation Guide for the XM Scaled topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/SC-XP-10.1.2-Installation-Guide-XM-Scaled-Topology-en.pdf) | Explains how to install the Sitecore Experience Management (XM1) topology to run the Content Delivery (CD) and Content Management (CM) server roles, and the Sitecore Identity server. This topology does not support xDB and xConnect. | - | [Installation Guide for the XP Scaled topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/SC-XP-10.1.2-Installation-Guide-XP-Scaled-Topology-en.pdf) | Explains how to install the fully featured Sitecore Experience Platform Installation (XP1) topology. This topology can be configured to run separated server roles. | - | [Quick Installation Guide for a Developer Workstation](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/SC-XP-10.1.2-Quick-Installation-Guide-Developer-Workstation-en.pdf) | Explains how to install the XP Single (XP0) topology on a workstation for development and testing purposes. | - | [Update Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/SC-XP-10.1.X-Update-Installation-Guide-en.pdf) | Explains how to update to the latest release in the Sitecore 10.1.X series. | - | [Developer Documentation](https://doc.sitecore.com/xp/en/developers) | Link to Sitecore developer documentation. | - | [Assembly list](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/Sitecore.Platform.Assemblies%2010.1.2%20rev.%20006578.zip) | Complete list of assemblies shipped with this release. | - -## Modules - - | Resource | Description | - | --- | --- | - | [Sitecore CLI](/downloads/Sitecore_CLI/3x/Sitecore_CLI_300) | Download files and release information for latest compatible version of Sitecore CLI. | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales](/downloads/Dynamics_CRM_Connect/6x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_600) | Download files and release information for latest compatible version of Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Sitecore Connect for Salesforce CRM](/downloads/Salesforce_Connect/6x/Sitecore_Connect_for_Salesforce_CRM_600) | Download files and release information for latest compatible version of Sitecore Connect™ for Salesforce CRM. | - | [Sitecore Connect for Salesforce Marketing Cloud](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60) | Download files and release information for latest compatible version of Sitecore Connect™ for Salesforce Marketing Cloud. | - | [Sitecore Connect for Content Hub](/downloads/Sitecore_Connect_for_Content_Hub/4x/Sitecore_Connect_for_Content_Hub_400) | Download files and release information for latest compatible version of Sitecore Connect™ for Content Hub. | - | [Sitecore Data Exchange Framework](/downloads/Data_Exchange_Framework/6x/Data_Exchange_Framework_600) | Download files and release information for latest compatible version of Sitecore Data Exchange Framework. | - | [Sitecore Experience Accelerator](/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1010) | Download files and release information for latest compatible version of Sitecore Experience Accelerator. | - | [Sitecore Headless Rendering](/downloads/Sitecore_Headless_Rendering/16x/Sitecore_Headless_Rendering_1600) | Download files and release information for latest compatible version of Sitecore Headless Rendering. | - | [Sitecore Horizon](/downloads/Sitecore_Horizon/100/Sitecore_Horizon_1011) | Sitecore Horizon is the next generation Experience Management product for the Sitecore Experience Platform™. | - | [Sitecore Identity](/downloads/Sitecore_Identity/6x/Sitecore_Identity_600) | Download files and release information for latest compatible version of Sitecore Identity. | - | [Sitecore Publishing Service Module](/downloads/Sitecore_Publishing_Service_Module/10x/Sitecore_Publishing_Service_Module_1010) | Download files and release information for latest compatible version of Sitecore Publishing Service Module. | - -## Upgrade options - - | Resource | Description | - | --- | --- | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/Sitecore%2010.1.2%20rev.%20006578%20(upgrade%20files).zip) | This package contains configuration files and database scripts for the upgrade. | - | [Sitecore UpdateApp Tool](/downloads/Sitecore_UpdateApp_Tool/1x/Sitecore_UpdateApp_Tool_110) | Updates the Core, Master, and Web databases. | - -## Client translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/Translations/Sitecore%2010.1.2%20rev.%20006578%20(da-DK).zip) | Danish language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/Translations/Sitecore%2010.1.2%20rev.%20006578%20(de-DE).zip) | German language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/Translations/Sitecore%2010.1.2%20rev.%20006578%20(ja-JP).zip) | Japanese language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/Translations/Sitecore%2010.1.2%20rev.%20006578%20(zh-CN).zip) | Chinese language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Chinese GeoIP Localization Pack](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/90/Sitecore%20Experience%20Platform%2090%20Initial%20Release/Secure/GeoIp%20Location%20China%20Localization%20Pack%201.0.0%20rev.%20180226.zip) | The pack provides enhanced region detection for China. The pack should be installed as a regular Sitecore module. | - -## Usage policies - - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - - - - Please note that as part of your system upgrade to Sitecore Version 10.1, Sitecore may collect additional information such as product version, number of site visits, generic hardware and software information, and recovery actions. This information will be used to help us to optimize your experience. All data will be processed in accordance with Sitecore’s privacy policy [here](https://www.sitecore.com/trust/privacy-policy). Should you have any queries or wish to discuss this, [please refer to our FAQ](https://kb.sitecore.net/articles/424335), or contact your Sitecore Account Manager. - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update3/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update3/index.md deleted file mode 100644 index 9bb554ddc..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update3/index.md +++ /dev/null @@ -1,118 +0,0 @@ ---- -title: 'Sitecore Experience Platform 10.1 Update-3' -description: '' -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update3.aspx ---- - -Update-3 to Sitecore Experience Platform 10.1. - -See [all available versions here](/downloads/Sitecore_Experience_Platform). - -## Download options for Sitecore Container deployments - -| Resource | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/10.1.3.009558.1562) | The Sitecore Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore in development and production container environments. | -| [Installation Guide for Developer Workstation with Containers](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update3/Secure/SC-XP-10.1.3-Developer_Workstation_Deployment_With_Docker-pdf-en.pdf) | This guide describes how to use Sitecore Containers with Docker Compose to deploy a developer workstation. | -| [Installation Guide for Production Environment with Kubernetes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update3/Secure/SC-XP-10.1.3-Production_Deployment_With_Kubernetes-pdf-en.pdf) | This guide describes how to use Sitecore Containers with Kubernetes to deploy containers to the Azure Kubernetes Service. | -| [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | -| [Upgrade Container Deployment Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update3/Secure/SC-XP-10.1.3-Upgrade_Container_Deployment_Guide_10_1_3-pdf-en.pdf) | Explains how to use the Sitecore Container Deployment Package to upgrade the SQL Server databases of an existing Sitecore XP 10.0.X installation to Sitecore XP 10.1.3. | - -## Download options - -| Resource | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Sitecore Installation Framework](/downloads/Sitecore_Installation_Framework/2x/Sitecore_Installation_Framework_230) | Follow this link to download the Sitecore Installation Framework (SIF) PowerShell module. Please refer to the Sitecore Experience Platform installation guide for further information on how to install Sitecore with SIF. | -| [Scripts for Sitecore Security database](/downloads/Scripts_for_Sitecore_Security_database) | The package contains the set of scripts for moving Sitecore Security membership provider from the Core database to individual or existing one. | -| [Sitecore Remote Distributed Deployment SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Sitecore%20remote%20distributed%20installation%20templates.zip) | The package contains Sitecore Install Framework deployment templates that can be used to deploy Sitecore Experience Platform remotely to a scalable distributed server cluster from a single workstation or server. | - -## Download options for On Premises deployment - -| Resource | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Graphical setup package for XP Single]() | The Sitecore Install Assistant's user interface guides you through the Sitecore XP Developer Workstation (XP Single) installation. Use it to review system requirements, install prerequisites, and complete the entire installation process. | -| [Graphical setup package for XM Scaled]() | The Sitecore Install Assistant's user interface guides you through the Sitecore XM Developer Workstation (XM Scaled) installation. Use it to review system requirements, install prerequisites, and complete the entire installation process. | -| [Packages for XP Single]() | Packages for XP Single (XP0) Instance configuration. | -| [Packages for XP Scaled]() | Individual packages for each of the dedicated XP Scaled (XP1) roles. | -| [Packages for XM Scaled]() | Individual packages for each of the dedicated XM Scaled (XM1) roles. | - -## Download options for Azure AppService - -| Resource | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------- | -| [Packages for XP Single]() | Packages for XP Single (XP0) Instance configuration. | -| [Packages for XP Scaled]() | Individual packages for each of the dedicated XP Scaled (XP1) roles. | -| [Packages for XM Single]() | Packages for XM Single (XM0) Instance configuration. | -| [Packages for XM Scaled]() | Individual packages for each of the dedicated XM Scaled (XM1) roles. | -| [Sitecore Azure Toolkit Resources](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update3/Secure/Sitecore%20Azure%20Toolkit%20Resources%2010.1.3%20rev.%20009558.zip) | Sitecore Azure Toolkit Resources package. | - -## Download options for Content Delivery Network CDN - -| Resource | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | -| [Package for XM Scaled and XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Sitecore.Content.Delivery.Network.Provider.1.0.0-r00010.scwdp.zip) | CDN package for both XM Scaled and XP Scaled Content Delivery (CD) role. | - -## Download options for Blob Storage - -| Resource | Description | -| -------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -| [Package for XM and XP](/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_301) | Blob Storage Package for XM Scaled, XP Scaled, XM Developer, XP Developer. | - -## Release information - -| Resource | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Release notes](/downloads/Sitecore_Experience_Platform/101/Sitecore_Experience_Platform_101_Update3/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | -| [Known issues](https://kb.sitecore.net/articles/545609) | Choose this link to access the Sitecore Knowledge Base. | -| [Sitecore Installation Framework (SIF) Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update2/Secure/SC-XP-10.1.2-SIF-2.3.0-Configuration-Guide-en.pdf) | Explains how to use the SIF Microsoft PowerShell module to deploy and configure a Sitecore topology. | -| [Installation Guide for the XM Scaled topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update3/Secure/SC-XP-10.1.3-Installation_Guide_for_the_XM_Scaled_Topology-pdf-en.pdf) | Explains how to install the Sitecore Experience Management (XM1) topology to run the Content Delivery (CD) and Content Management (CM) server roles, and the Sitecore Identity server. This topology does not support xDB and xConnect. | -| [Installation Guide for the XP Scaled topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update3/Secure/SC-XP-10.1.3-Installation_Guide_for_the_XP_Scaled_topology-pdf-en.pdf) | Explains how to install the fully featured Sitecore Experience Platform Installation (XP1) topology. This topology can be configured to run separated server roles. | -| [Quick Installation Guide for a Developer Workstation](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update3/Secure/SC-XP-10.1.3-Quick_Installation_Guide_for_a_Developer_Workstation-pdf-en.pdf) | Explains how to install the XP Single (XP0) topology on a workstation for development and testing purposes. | -| [Update Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update3/Secure/SC-XP-10.1.3-Update_Installation_Guide_v2.pdf) | Explains how to update to the latest release in the Sitecore 10.1.X series. | -| [Developer Documentation](https://doc.sitecore.com/xp/en/developers) | Link to Sitecore developer documentation. | -| [Assembly list](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/101/Sitecore%20Experience%20Platform%20101%20Update3/Secure/Sitecore.Platform.Assemblies%2010.1.3%20rev.%20009558.zip) | Complete list of assemblies shipped with this release. | - -## Modules - -| Resource | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Sitecore CLI](/downloads/Sitecore_CLI/5x/Sitecore_CLI_52113) | Download files and release information for latest compatible version of Sitecore CLI. | -| [Sitecore Connect for Microsoft Dynamics 365 for Sales](/downloads/Dynamics_CRM_Connect/6x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_600) | Download files and release information for latest compatible version of Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | -| [Sitecore Connect for Salesforce CRM](/downloads/Salesforce_Connect/6x/Sitecore_Connect_for_Salesforce_CRM_600) | Download files and release information for latest compatible version of Sitecore Connect™ for Salesforce CRM. | -| [Sitecore Connect for Salesforce Marketing Cloud](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_60) | Download files and release information for latest compatible version of Sitecore Connect™ for Salesforce Marketing Cloud. | -| [Sitecore Connect for Content Hub](/downloads/Sitecore_Connect_for_Content_Hub/4x/Sitecore_Connect_for_Content_Hub_400) | Download files and release information for latest compatible version of Sitecore Connect™ for Content Hub. | -| [Sitecore Data Exchange Framework](/downloads/Data_Exchange_Framework/6x/Data_Exchange_Framework_600) | Download files and release information for latest compatible version of Sitecore Data Exchange Framework. | -| [Sitecore Experience Accelerator](/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1010) | Download files and release information for latest compatible version of Sitecore Experience Accelerator. To ensure compatibility with the latest Sitecore XP 10.1.x update release, also install the latest cumulative hotfix for SXA 10.1.0. See KB1001756.  | -| [Sitecore Headless Rendering](/downloads/Sitecore_Headless_Rendering/18x/Sitecore_Headless_Rendering_1800) | Download files and release information for latest compatible version of Sitecore Headless Rendering. | -| [Sitecore Horizon](/downloads/Sitecore_Horizon/100/Sitecore_Horizon_1011) | Sitecore Horizon is the next generation Experience Management product for the Sitecore Experience Platform™. | -| [Sitecore Identity](/downloads/Sitecore_Identity/7x/Sitecore_Identity_70327) | Download files and release information for latest compatible version of Sitecore Identity. | -| [Sitecore Publishing Service Module](/downloads/Sitecore_Publishing_Service_Module/10x/Sitecore_Publishing_Service_Module_1010) | Download files and release information for latest compatible version of Sitecore Publishing Service Module. | - -## Upgrade options - -| Resource | Description | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | -| [Configuration files for upgrade]() | This package contains configuration files and database scripts for the upgrade. | -| [Sitecore UpdateApp Tool](/downloads/Sitecore_UpdateApp_Tool/1x/Sitecore_UpdateApp_Tool_110) | Updates the Core, Master, and Web databases. | - -## Client translations - -| Resource | Description | -| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Danish (da-DK)]() | Danish language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | -| [German (de-DE)]() | German language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | -| [Japanese (ja-JP)]() | Japanese language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | -| [Chinese (zh-CN)]() | Chinese language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | -| [Chinese GeoIP Localization Pack](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/90/Sitecore%20Experience%20Platform%2090%20Initial%20Release/Secure/GeoIp%20Location%20China%20Localization%20Pack%201.0.0%20rev.%20180226.zip) | The pack provides enhanced region detection for China. The pack should be installed as a regular Sitecore module. | - -## Usage policies - -| Resource | Description | -| ------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------- | -| [Sitecore Device Detection Services usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | -| [Sitecore IP Geolocation usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - - - - Please note that as part of your system upgrade to Sitecore Version 10.1, Sitecore may collect additional information such as product version, number of site visits, generic hardware and software information, and recovery actions. This information will be used to help us to optimize your experience. All data will be processed in accordance with Sitecore’s privacy policy [here](https://www.sitecore.com/trust/privacy-policy). Should you have any queries or wish to discuss this, [please refer to our FAQ](https://kb.sitecore.net/articles/424335), or contact your Sitecore Account Manager. - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102/Release_Notes.md deleted file mode 100644 index da103ceb2..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102/Release_Notes.md +++ /dev/null @@ -1,253 +0,0 @@ ---- -title: 'Release Notes' -description: '' -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102/Release_Notes ---- - -**November 2021 – released Sitecore Experience Platform 10.2.0 rev. 006766** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -- [Highlights](#highlights) -- [New features/improvements](#new-featuresimprovements) -- [Deprecated/Removed](#deprecatedremoved) -- [Breaking changes](#breaking-changes) -- [Known issues](#known-issues) -- [Resolved issues](#resolved-issues) - -## Highlights - -Sitecore Experience Platform 10.2.0 includes: - -- ​​The Update Center has been deprecated. -- ​​​​​​Sitecore Identity Server 6.0.0 is based on .NET Core 3.1 and the updated base libraries. This ensures that our customers receive security updates promptly. -- The Content Explorer now supports a table view of all the content items. - You can use search, queries, and filters to find content items in this table view. -- ​You can now use the xConnect CLI tools to purge interactions, based on various criteria and reduce the hosting cost associated with collection database shards even further. - -## New features/improvements - -| Context | Description | ADO no. | -| ------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------- | -| Containers | ​​Two-digit tags are now used in Docker-compose and Kubernetes​. This allows you to use up-to-date images without changing their tags​. | 451858 | -| Containers | ​The `mssql-init` container has been added to docker-compose​. | 451701 | -| Containers | ​​​​​Environment variable support for the XP tracker client IP proxy setting has been added. The `X-Forwarded-For` header is enabled in `.yaml files for both Docker-Compose and AKS deployments​.` | 427144, 480007 | -| Containers | ​​The `ID` role is now based on the .NET Core runtime image​​​. | 427145 | -| Containers | ​The `compose-init` script has been added to the docker-compose tool to initialize the `.env` file​​. | 444394 | -| Containers | ​The `mssql-init`​ container uses the `ShardDeploymentTool` to deploy shards to `ElasticPool`​. | 459110 | -| Containers | ​​​​The Solr container has been updated to version 8.8.2. | 478680 | -| Containers | ​The `mssql-update image has been updated and you can now upgrade from Sitecore XP 9.3.0 or later to Sitecore XP 10.2.0.​​​` | 467396 | -| Email Experience Manager | The EXM campaigns table now contains ​an infinite scroll. | 446541 | -| Email Experience Manager | ​The EXM DDS role now supports containers.​ | | -| Experience Analytics | ​You can now sort report tables by the column headings. | | -| Experience Analytics | ​​​​​Reports can now be exported as CSV files. | | -| Horizon | ​You can now create a data source for a component. ​ | 456066 | -| Horizon | ​Shared Routing extensions have been added that allow you to switch between Content, Pages, and the Content Explorer.​​​​ | 461606 | -| Horizon | ​A SAC image has been created for Horizon. | 456322 | -| Horizon | The Authoring Host has been upgraded to .Net Core 3.1​. | 456335 | -| Horizon | ​​​​The `Publish/Workflow` group has been redesign​ed. | 416680 | -| Horizon | ​You can now select links types from a drop-down list. | 421639 | -| Horizon | ​​​​​Renderings are now grouped thematically. | 402040 | -| Horizon | ​The Content Explorer now supports a table view of all the content items. You can use search, queries, and filters to find content items in this table view. | 420932 | -| Horizon | ​​​​​A content author can now select a placeholder that already contains a component and the component containing it. If a user selects a component on top of or within close proximity to another component, they can now use the arrow within the selected field to move within the hierarchy of components. | 456064 | -| Installation | ​​Sitecore Installation Assistant 1.4.0 supports Sitecore XP 10.2​.0​​​. | 494769 | -| Marketing Foundation | ​You can now use the xConnect CLI tools to purge interactions, based on various criteria and reduce the hosting cost associated with collection database shards even further. | | -| Marketing Foundation | ​​​​​If you use the CLI to purge records from xDB an estimate of how many records are going to be purged is now displayed. | 412543 | -| Marketing Foundation | ​​xConnect logging has been improved to help diagnose issues as they arise. | 406982 | -| Marketing Foundation | ​Communication between tracking and xConnect has been improved. | | -| Marketing Foundation | ​​​​You can now disable bot auto detection on a site by site basis. | | -| Sitecore Forms | ​You can now add an asterisk to a required​ field. | 219239 | -| Sitecore Forms | We have optimized the way we store `Date` field values. | 451131 | -| Sitecore Forms | ​We have implemented a `DistinctBy` extension method​. | 479735 | -| Sitecore Forms | ​We have optimized the data export functionality.​​​​ | 343331 | -| Sitecore Forms | When you submit a form, the fields are now exported in order even when some fields are empty.​ | 448512 | -| Sitecore Forms | ​We have optimized data export to support exporting large data-sets. | 385283 | -| Sitecore Forms | ​​​​​You can now export form entries using local time​. | 339612 | -| List Manager | ​​​​​It is now easier to add custom facets in the `Contacts` table. | 234293, 450753 | -| List Manager | ​​​​​You can now add custom columns to the `Contacts` table to show contact facet data. | 234293 | -| Platform | ​​Sitecore Identity Server 6.0.0 is based on .NET Core 3.1 and the updated base libraries. This ensures that our customers receive security updates promptly. | 442201 | -| Platform | ​Initial Prefetch​​​ has been improved. | 119321, 476687 | -| Platform | ​The performance of the `Sitecore.Security.Accounts.UserDelegation.CanManage(User)` method​ has been improved. | 401990 | -| Platform | ​​​​​The `MaxNodeCount` setting has been added to the `Sitecore.Services.Client.config` ​file. | 441621 | -| Platform | ​​The logging level in the `OverridePublishContext` processor has been changed from WARN to INFO​. | 470561 | -| Platform | ​The performance of the `Sitecore.Data.Items.Item.GetUniqueId` method​ has been improved. | 470886 | -| Platform | ​​​​​The performance of the `Sitecore.Caching.ItemCache.GetKey`​ method​ has been improved. | 470890 | -| Platform | ​The performance of the `Sitecore.Caching.AccessResultCacheKey.Equals`​ method​ has been improved. | 470891 | - -## Deprecated/Removed - -| Context | Description | ADO no. | -| ------------------------ | ------------------------------------------------------------------------------------------------------------------- | ------- | -| Experience Analytics | ​​The Reducer and Reagrgragation functionality has been marked as obsolete and will be removed in a future version. | 469124 | -| Email Experience Manager | ​A tooltip that was displayed when you hovered over an item in reports for automated campaigns has been removed.​​​ | 491060 | -| Miscellaneous | ​​Support for Azure Search has been removed. | 430861 | -| Platform | ​​​​​The `Update Center` has been deprecated. | 440330 | -| Platform | ​​​​​​Unused jQuery and Bootstrap libraries have been removed from Identity Server​​​. | 478276 | -| Platform | The Upload Filter tool has been obsoleted. | | - -## Breaking changes - -| Context | Description | ADO no. | -| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | -| Marketing Foundation | - ​The following classes have been removed:
- `Sitecore.Processing.Engine.Abstractions.ITaskStatusNotifier​`​
- `Sitecore.Processing.Engine.Abstractions.Buses.TaskStatusBus`​
- `Sitecore.Processing.Engine.Abstractions.Messages.*`​
- `Sitecore.Processing.Engine.Buses.*`​
- `Sitecore.Processing.Engine.Messaging.*`​
- The following classes have been moved:
- `​Sitecore.Processing.Engine.Storage.WebApi.XConnectHttpConfiguration, Sitecore.Processing.Engine.Storage.WebApi` moved to `Sitecore.Processing.Engine.WebApi.XConnectHttpConfiguration, Sitecore.Processing.Engine.WebAp`​
- `Sitecore.Processing.Engine.Storage.WebApi.CultureCodeAttribute, Sitecore.Processing.Engine.Storage.WebApi` moved to `Sitecore.Processing.Engine.WebApi.CultureCodeAttribute, Sitecore.Processing.Engine.WebApi`​
- `​Sitecore.Processing.Engine.Storage.WebApi.DataRowFormatAttribute, Sitecore.Processing.Engine.Storage.WebApi` moved to `Sitecore.Processing.Engine.WebApi.DataRowFormatAttribute, Sitecore.Processing.Engine.WebApi`​
- `Sitecore.Processing.Engine.Storage.WebApi.Extensions.ETagExtensions, Sitecore.Processing.Engine.Storage.WebApi` moved to `Sitecore.Processing.Engine.WebApi.Extensions.ETagExtensions, Sitecore.Processing.Engine.WebApi`​
- `Sitecore.Processing.Engine.Storage.WebApi.HttpResponseUtil, Sitecore.Processing.Engine.Storage.WebApi` moved to `Sitecore.Processing.Engine.WebApi.HttpResponseUtil, Sitecore.Processing.Engine.WebApi`​
- `Sitecore.Processing.Engine.Storage.WebApi.Models.GetTableDataModel, Sitecore.Processing.Engine.Storage.WebApi` moved to `Sitecore.Processing.Engine.WebApi.Models.GetTableDataModel, Sitecore.Processing.Engine.WebApi`​
- ​The following assemblies have been removed:
- `Sitecore.Processing.Tasks.Messaging.Xmgmt`​
- `Sitecore.Processing.Tasks.Messaging`​
- `Sitecore.Processing.Engine.Storage.WebApi`​ replaced by the new `Sitecore.Processing.Engine.WebApi` assembly
- ​The following members signature has been changed:
- `​​Sitecore.Processing.Engine.TaskManager​:`
`.ctor(ILogger, ITaskDataProvider, ICursorDataProviderFactory, ITaskServicesFactory)`​
has been replaced with
`​​​.ctor(ILogger, ITaskDataProvider, ICursorDataProviderFactory, ITaskServicesFactory, IEnumerable)`
- `​​Sitecore.Pr​ocessing.Engine.Agents.TaskAgent:`
`.ctor(ITaskExecutorResolver, ILogger, ITaskDataProvider, IServiceProvider, IConfiguration, ITaskStatusNotifier)`​
has been replaced with
`.ctor(ITaskExecutorResolver, ILogger, ITaskDataProvider, IServiceProvider, IConfiguration)`
- `​​​Sitecore.Processing.Engine.Agents.TaskExecutor:​`
`ITaskExecutor ResolveTaskExecutor(IServiceProvider, IProcessingTaskData, IAgentId)`​
has been replaced with
`ITaskExecutor ResolveTaskExecutor(IServiceProvider, ProcessingTaskData, IAgentId)` ​
- `​​​​​Sitecore.Processing.Engine.Abstractions.ITaskExecutorResolver​:`
`ITaskExecutor ResolveTaskExecutor(IServiceProvider, IProcessingTaskData, IAgentId)`​
has been replaced with
`ITaskExecutor ResolveTaskExecutor(IServiceProvider, Sitecore.Processing.Engine.Model.ProcessingTaskData, IAgentId)`
- ​​`Sitecore.Processing.Tasks.Sql.SqlTaskDataProvider` now implements ` Sitecore.Processing.Engine.ITaskDataProvider` instead of `Sitecore.Processing.Tasks.Abstractions.ITaskDataProvider` and all the methods have been changed accordingly.​
- The following configuration files have been removed:
​ On the cortex processing engine worker instance:

- `App_Data/Config/Sitecore/Processing/sc.Processing.Engine.TaskCancelation.Messaging.SqlServer.xml `​
- `App_Data/Config/Sitecore/Processing/sc.Processing.Engine.TaskCancelation.Messaging.xml `​
- `App_Data/Config/Sitecore/Processing/sc.Processing.Engine.TaskCancellation.Messaging.Azure.xml.disabled `​
- `App_Data/Config/Sitecore/Processing/sc.Processing.Engine.TaskProgress.Messaging.Azure.xml.disabled `​
- `App_Data/Config/Sitecore/Processing/sc.Processing.Engine.TaskProgress.Messaging.SqlServer.xml `​
- `App_Data/Config/Sitecore/Processing/sc.Processing.Engine.TaskProgress.Messaging.xml `​
- `App_Data/Config/Sitecore/Processing/sc.Processing.Engine.TaskRegistration.Messaging.Azure.xml.disabled `​
- `App_Data/Config/Sitecore/Processing/sc.Processing.Engine.TaskRegistration.Messaging.SqlServer.xml `​
- `App_Data/Config/Sitecore/Processing/sc.Processing.Engine.TaskRegistration.Messaging.xml `​
- `App_Data/Config/Sitecore/Processing/sc.Processing.Engine.TaskStatusBus.Messaging.Azure.xml.disabled `​
- `App_Data/Config/Sitecore/Processing/sc.Processing.Engine.TaskStatusBus.Messaging.SqlServer.xml `​
- `App_Data/Config/Sitecore/Processing/sc.Processing.Engine.TaskStatusBus.Messaging.xml `​


On the CM instance:
- `​App_Config/Sitecore/Processing.Tasks.Messaging.Xmgmt/Sitecore.Processing.Tasks.Messaging.Azure.config `​
- `​App_Config/Sitecore/Processing.Tasks.Messaging.Xmgmt/Sitecore.Processing.Tasks.Messaging.SqlServer.config `​
- `App_Config/Sitecore/Processing.Tasks.Messaging.Xmgmt/Sitecore.Processing.Tasks.Messaging.config `​
- ​​The following configuration file has been renamed:
- `App_Config/Sitecore/Processing/sc.Processing.Engine.Storage.WebApi.Initialize.xml`​ has been renamed `App_Config/Sitecore/Processing​/sc.Processing.Engine.WebApi.Initialize.xml`​ | | - -## Known issues - -The following is a known issue: - -| Context | Description | ADO no. | -| ------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------- | -| Media | When a media blob is referenced by multiple duplicated media items, deleting one of these duplicated items will result in the deletion of the media blob. | 563054 | -## Resolved issues - -The following issues have been fixed: - -| Context | Description | ADO no. | -| ------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------- | -| Campaign Creator | If the `Publishing Service Module` is installed, you cannot ​create a campaign in the `Campaign Creator`. | 455656 | -| Containers | ​​You cannot use special characters in the Solr username and password. | 463911 | -| Email Experience Manager | ​​​​The `WaitForDispatchToFinish.WaitForDedicatedServers(DispatchNewsletterArgs)` method generates an endless loop. | 313873 | -| Email Experience Manager | The `The message delivery has completed in emulation mode` message is displayed unnecessarily.​ | 440671 | -| Email Experience Manager | ​The default sorting does not work in the EXM dashboards. | 448246 | -| Email Experience Manager | ​​​​In the `Preference Center​`, the `​Preference` settings​ are not updated. | 459455 | -| Email Experience Manager | The `Sent Email Campaigns` dashboard does not display​​ the values for `Sent to`, `Unique opens`, `Open rate`, `Unique clicks`, `Click rate`, and `Unsubscribes`.​​​​ | 460891 | -| Email Experience Manager | If xConnect is unavailable​​, ​the same contact data is used for different recipients.​ | 461807 | -| Email Experience Manager | If a user unsubscribes, the confirmation page​ is is not displayed in the target language​ and defaults back to EN. | 466670 | -| Email Experience Manager | ​​​​The `Drafts` page displays ​duplicate email campaigns. | 485900 | -| Email Experience Manager | ​​​​​If a user is present in multiple lists, unsubscribing does not always remove the user from all the lists​. | 487992 | -| Email Experience Manager | In a Marketing Automation campaign, activity descriptions and tool tips that are set to a local language revert to EN after an email has been sent​​.​​​​ | 490012 | -| Email Experience Manager | ​​​​The description of importing recipients lists from a file mentions that TXT and Excel files are accepted, but the upload function only allows to create a recipients list from a CSV file. | 491062 | -| Email Experience Manager | ​​​​The notification confirming that a new language version in an email campaign has been created is shown twice in two different colours. | 491668 | -| Experience Analytics | ​In Experience Analytics, `[unkown region] dat` is displayed for certain regions. | 482887 | -| Experience Analytics | ​The `ExperienceAnalytics.DimensionKeys` and `ExperienceAnalytics.DimensionItems` caches are recreated multiple times. | 469124 | -| Experience Analytics | ​​​​​The `ExperienceAnalytics.Sites` cache is created multiple times. | 235083 | -| Experience Editor | ​In a multi-site setup, if you select an item in the content tree, the ​`Context.Site` is not resolved correctly. | 465667 | -| Experience Editor | ​In a `List` view, if you select ​a `Search` field with a general Link, i​t throws an error. | 481916 | -| Experience Editor | ​​​​In the Rich Text Editor, if you change the text formatting of a link, the ​`Remove Link` button is disabled. | 484375 | -| Experience Editor | ​​​​​If you add an alt text to an image, it disappears in the Experience Editor.​ | 464217 | -| Experience Editor | ​​​​The `CheckRevision` processor does not ​compare versions correctly. | 76398 | -| Experience Editor | `​MyItemsCountRequest` performs RefreshIndex synchronously​.​​​​ | 208634 | -| Experience Optimization | When you retrieve suggested tests, performance is degraded. | 449450 | -| Experience Optimization | ​If you create goals in any language except English, they are not displayed correctly in test objective drop-down list.​​​​ | 446356 | -| Experience Optimization | The default variant does not respect the context language.​​​​​​ | 448952 | -| Experience Optimization | ​​​​If you add a rendering to a placeholder that is part of a rendering under personalization, the ​`Could not find the rendering in the HTML loaded from server` error occurs. | 449029 | -| Experience Optimization | ​​If you merge contacts, the `MergeInfo` facet is not populated correctly. | 451830 | -| Experience Optimization | If you ​remove every personalization rule, the `Default` rule is not removed. | 449644 | -| Experience Optimization | ​​​​​You cannot remove the `Default` rule. | 464530 | -| Experience Optimization | ​​​​​A rebuild of the `sitecore_suggested_test_index` is triggered more frequently than required and this places an necessarily high load on the search infrastructure. | 336911 | -| Experience Optimization | ​If device detection is not initialized and live events are used, the​ `ConvertMVTestEvent` causes page load delays. | 467020 | -| Experience Profile | If a profile item does not have an English version, an error is thrown | 357427 | -| Experience Profile | ​​​​If multiple profile keys share the first 9 characters in their name, the ​Radar chart is empty. | 316258 | -| Experience Profile | ​​​​​​​Incorrect URLS in the Experience Profile UI cause the `ModelState is not valid` error to occur. | 215069 | -| Experience Profile | ​An incorrect icon is displayed for certain events. | 223455 | -| Experience Profile | ​Long URLs are not displayed correctly. | 221868 | -| Experience Profile | In the Experience Profile, the ​timeline uses UTC time instead of the current time zone. | 126998 | -| Horizon | In the `Data Source` dialog, the ​template list​ is not scrollable.​​​​ | 456792 | -| Horizon | ​​​​If you scroll a large content tree​ in the `Rendering` dialog, the ​`Create new` button is not sticky. | 452408 | -| Horizon | ​​​​A Horizon search result does not open the correct website. | 454360 | -| Horizon | ​​​​If you run​ a platform session and a Horizon session in the same browser and then log out from the platform, you are not logged out of Horizon. | 451499 | -| Horizon | ​​​​​The `Gallery` component does not display a loading spinner​ when it is fetching renderings. | 365296 | -| Horizon | ​​​​In Firefox, if you create or rename an item, the cusror behaves inconsistently. | 370300 | -| Horizon | ​​​​​In the item tree, the undo drag-and-drop functionality does not work. | 415857 | -| Horizon | ​​​​In a `Rich Text` field, ​a numbered list with line breaks​ is rendered incorrectly. | 431684 | -| Horizon | ​​​​​If you modify a field, three unnecessary requests are sent with each save request. | 451402 | -| Horizon | ​​​​​In the `Assign Content Item` dialog, the item tree is not loaded if the datasource item is outside of the datasource location. | 451477 | -| Horizon | ​​​​The current item in the content tree does not remain highlighted when you invoke the context menu.​ | 472533 | -| Horizon | ​​​​​The `Data Source` dialog is not scrollable on small screens. | 456794 | -| Horizon | ​​​​In a `Rich Text` field when you switch between `Edit Page` and `Metadata` modes​, unintended changes occur. | 415702 | -| Horizon | ​​​​​If you try to select a language version that has not yet been created, the right hand side panel shows incorrect `Created` and `Created by` information. | 418078 | -| Horizon | ​​​​On the `Insights` page, ​ if you collapse or expand the left hand side panesomel, some charts do not automatically resize. | 422445 | -| Horizon | ​​​​​The message that is shown shown when you move an item in the content tree is worded incorrectly. | 423937 | -| Horizon | The selected item in the content tree is not displayed in semi-bold.​​​​ | 442058 | -| Horizon | ​​​​​The text in a `General Link field does not fall back to the item name after it is cleared in the right hand side panel.` | 450393 | -| Horizon | ​​​​​In the `Content Item` dialog, you cannot select a folder as a datasource for a rendering. | 451479 | -| Horizon | ​​​​On the `Canvas`, if the text for an internal or external link contains a space, it ​breaks the link. | 452412, 452415 | -| Horizon | ​​.NET Core Remote Code Execution Vulnerability CVE-2021-24112 has been addressed. | 483467 | -| Horizon | If an image field contains a value, you cannot upload a media item to the root folder. | 166662 | -| Horizon | ​​​​​If you delete an item from the content tree, an error occurs.​ | 489894 | -| Horizon | In the RTE, if you discard your changes, they are still saved.​​​​ | 488859 | -| Horizon | ​If you use an invalid Item Id query string parameter to open an item, the content tree does not work correctly. | 483027 | -| Horizon | If an item has a long name, the content tree does not hide the text when it displays an ellipsis. | 481354 | -| Horizon | ​​​​​​​​In the `Date/Datetime` picker​, the calendar does not display the last day of each month. | 469143 | -| Horizon | ​In a `Drop Link`​ field, you can select the `None` item. | 450868 | -| Horizon | ​In a `Drop Link` field, a scroll bar is displayed when it is not needed. | 450870 | -| Horizon | ​​​​​If an image has parentheses in its name, it is not uploaded. | 444007 | -| Horizon | ​In the `Date Picker` popup, if a user clicks on an arrow​, the `Date Picker`​ moves. | 355662 | -| Horizon | ​The `Expansion` panel and accordion header arrow is not aligned correctly. | 368432 | -| Horizon | ​​​​The `Expansion` panel does not have a separator line​. | 368577 | -| Horizon | ​In the RTE field​, the tabs do not have the hover/active state.​ | 374226 | -| Horizon | ​​​​​Creating an item in the Content tree causes errors. | 450710 | -| Horizon | ​​If you remove an item from a `Droptree` field, the tree does not load correctly. | 452837 | -| Horizon | The `QueryController` causes an API endpoint conflict.​​ | 467666 | -| Horizon | ​​​​In a `Rich Text` field, ​numbered lists that contain line breaks​ are rendered incorrectly​. | 431684 | -| Horizon | ​If you use the `@Html.Sitecore().BeginField` helper, it breaks the Page editor. | 468371 | -| Horizon | If you close the `Global` search panel, the search field is not cleared. | 448158 | -| Horizon | ​​​​​If you use the `Undo` or `Redo` buttons, the data in a droptree is not handled smoothly. | 463314 | -| List Manager | ​​​​`Convert to Contact List` process for a segmented list can be started multiple times​, and this generates corrupt lists.​ | 453180 | -| List Manager | ​​​​You can start the conversion of a segmented list twice. | 453180 | -| Marketing Automation | The Dashboard runs in the context of the website instead of in the context of the shell site and this causes errors.​ | 468077 | -| Marketing Foundation | ​​​​​If a URL ends with a slash, it breaks the `VisitorIdentificationCSS.aspx` and `VIChecker.aspx` analytics requests. | 485791 | -| Marketing Foundation | ​​​​​The `CursorScheduler.TryGetNextAsync` cursor is completed before the job is finished. | 461061 | -| Marketing Foundation | ​In certain scenarios, a ​memory leak occurs in the xConnect client. | 476077 | -| Marketing Foundation | When the submit queue is processed, `​AlreadyExist` and `ReferenceNotFound` exceptions are thrown. | 421148 | -| Miscellaneous | ​​​​​A field that is added to the `AddIncludedField` setting is not added to the index​​. | 404384 | -| Path Analyzer | ​Durining processing the historical interactions of a contact are loaded unnecessarily thereby decreasing throughput.​​​​ | 460948 | -| Path Analyzer | In Path Analyzer maps, impressions relating to wildcard URLs are displayed as "\*".​ | 107691 | -| Path Analyzer | ​The `English Visits` branch template contains a link to a missing condition. | 447660 | -| Platform | ​​​​​The `User Manager` resolves every user every time the `User Editor` is opened and this degrades performance on Azure databases​​. | 490850 | -| Platform | ​The `Sitecore.Data.ID.IsID` method returns incorrect values​. | 93188 | -| Platform | If you delete a version of a media item from the `Recycle Bin`, Blobs are not removed. | 93303 | -| Platform | ​​​​In the `Media Browser` dialog box​, on the `Search` tab, you cannot select a media item. | 95929 | -| Platform | ​​​​In the `BreakingLinks` dialog, if you enter a link to another item, it​ changes the rendering parameters. | 205771 | -| Platform | ​​Broken links are not removed from fields based on the `Sitecore.Data.Fields.ReferenceField` type. | 257195 | -| Platform | ​The `FieldCollection.GetField(ID fieldID)` method can return null during concurrent access. | 297829 | -| Platform | ​The partial retrieval of a media file fails when the range value is larger than the file size.​​​​ | 344806 | -| Platform | ​​​​​If the `Item name` and `Display name` contain special characters, they are double-encoded. | 393368 | -| Platform | ​When publishing restrictions are set​, the `MaxAge` ​media cache header causes an error. | 426977 | -| Platform | ​In a rule condition, s​pecial characters, for example, \, # or ;< are encoded. | 432988 | -| Platform | ​​​​If the value of the language cookie is set to an incorrect value, a​ `Could not parse the language` error occurs. | 444486 | -| Platform | ​If the httpcookies `domain` attribute contains a value, an iInfinite loop occurs when you log out. | 445560 | -| Platform | ​If you remove all the personalization rules the `Default` rule is not removed. | 449644 | -| Platform | ​​​​​Language Fallback changes the `Standard Values`​. | 449857 | -| Platform | ​​​​If the `AllowDuplicateItemNamesOnSameLevel` setting is set to false, `​PublishAgent` can fail. | 452733 | -| Platform | ​Some security vulnerabilities have been fixed. | 452739, 475944, 486210, 472976, 478174 | -| Platform | If a rendering is cacheable and the `vary by data` setting set to true, ​multi-variant tests do not work correctly. ​ | 452994 | -| Platform | ​​​​​In the Experience Editor, if you change the sort order, ​the `Revision` field is not updated. | 462936 | -| Platform | ​​​​​If you clone a large number of items, performance is poor. | 470250 | -| Platform | ​If you try to view media item that is locked by another user​, ​an exception occurs. | 476178 | -| Platform | ​The LinkBuilder uses the `hostName` setting instead of the `site name` setting. | 477034 | -| Platform | ​​​​​If the "hide rendering" personalization rule has the "Ignore other caching settings override with defined below" caching option cleared, it causes an exception​. | 482547 | -| Platform | ​If a Rich Text field contains a ​`Text Fragment link `with a single left parenthesis, it causes a regex exception.​​​​`` | 489112 | -| Platform | ​​If the `Display name` of an item contains special characters, it breaks the `Link Manager` and the `Item Resolver` processor​. | 491722 | -| Platform | ​​Telemetry tracking can affect application performance because of compatibility issues related to the `System.Security.Cryptography.Algorithms` library. | 485287 | -| Platform | If you configure a private session state to use Redis or SQL Server, the Content Editor no longer works. | 468220 | -| Sitecore.ContentSearch | ​If you use multiple `OR` operators in a search queary, it does not work correctly. | 452871 | -| Sitecore.ContentSearch | ​Sitecore tries to index the `Final Renderings` field​. | 466628 | -| Sitecore.ContentSearch | If you search with the `sort by field` setting and the field is not specified in the `fieldMap` setting for the index, performance is very poor. | 127551 | -| Sitecore Forms | If consent is revoked, no data is saved. | 413788 | -| Sitecore Forms | ​If you create a form that contains a section, it throws an error. | 481105 | -| Sitecore Forms | The `FormFieldController::ReloadField​` class generates ​insecure deserialization. | 453804 | -| Sitecore Forms | ​​​​In the `text/label` of a form field, if you ​use the closing `br` tag, it​ adds an additional div tag when you click `Apply`. | 443768 | -| Sitecore Forms | ​​​​​If you add multiple forms to a page, visitors cannot submit a form. | 464202 | -| Sitecore Forms | ​In the `redirect to url` action, ​prameters are not encoded correctly. | 478130 | -| Sitecore Forms | ​​​​​ In an exported CSV file that contain form data, the order of the columns can change. | 435640 | -| Sitecore Forms | ​​​​A multi-page form does not work correctly if the session expires before you submit the form. | 480373 | -| Sitecore Forms | ​​If you multiple forms to a page, the forms are not saved when you try to save them. | 463172, 460912 | -| Sitecore Forms | ​If you put a second form on a page, it does not work. | 470882 | -| Sitecore Forms | ​The navigation path does not align with the selected navigation item.​​​​ | 471457 | -| Sitecore Forms | A `Dropdown List` field that has ​a condition with a hide action ​does not always work.​​​​ | 289772 | -| Sitecore Forms | ​In the Experience Editor​, in preview mode, ​conditions do not work. | 424629 | -| Sitecore Forms | ​If tracking is disabled, the Save Data submit action does not save any data.​ | 464192 | -| Sitecore Forms | If you submit a form that contains an empty non-required `File Upload` field​, an exception occurs. | 389332 | -| Sitecore Forms | ​​​​​If you submit a form​, a session expire message​ is displayed. | 479471 | -| Sitecore Forms | ​​​​If you submit a form with the `Redirect to Page` or `Redirect to Url` submit action​, ​an alert about session expiration is displayed. | 483698 | -| Sitecore Forms | ​​The `Form List` is sorted incorrectly by name​. | 409298 | -| Sitecore Forms | ​You cannot add two actions of the same type to a form​. | 398965 | -| Sitecore Forms | ​​Newlines (\n) in `Multiple-line Text` form fields are stored as blank spaces​. | 451133 | -| Sitecore Forms | ​Exported csv files contain an incorrect delimiter​. | 357495 | -| Sitecore Forms | ​If the formatting of a `Date` field contains several spaces, the field works incorrectly. | 423023 | -| Sitecore Forms | ​​​​The `Sitecore.ExperienceForms.Mvc.Controllers.BaseFormBuilderController.ProcessFormData` method can throw a `System.NullReferenceException` error. | 447188 | -| Sitecore Forms | ​If you use the `FormItemTreeView Parameters` template, ​checkboxes remain unchecked on the form. | 476128 | -| Sitecore Forms | ​If you create a form with the `trigger goal` action and the `enableTracking` setting set to `false`, it cannot be submitted. | 449691 | -| Sitecore Forms | ​​​​​Sitecore Forms uses the `en` language when you select the `Redirect to Page` action. | 228498 | -| SPEAK | ​Stylesheets are not build correctly. | 470157 | diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102/index.md deleted file mode 100644 index 6d37f40fd..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102/index.md +++ /dev/null @@ -1,133 +0,0 @@ ---- -title: "Sitecore Experience Platform 10.2" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102.aspx ---- - -Sitecore Experience Platform 10.2 focuses on increasing performance and stability while helping to reduce costs so organizations can deliver unforgettable experiences faster than ever before. By providing the ability to incrementally convert to headless Sitecore architectures without a full rebuild, 10.2 also offers a bridge to our composable DXP for those who are interested in that path. - -In addition, the developer experience is also vastly improved in 10.2 thanks to increases in agility and capabilities in SXA, publishing enhancements, headless rendering, and general upgrades and improvements. - -Other highlights include: - -- EXM DDS Container Support: Dedicated email dispatch servers (DDS) are supported in Kubernetes and Docker compose files allowing for quicker setup. -- Introduction of GetTargetContact: Helps deliver efficient communication between tracker and xConnect to help increase overall performance. -- UX Improvements in Experience Analytics: Gives marketers more control of and access to their data, providing better visualization and more actionable reporting for stakeholders. -- Personalization Effect Reporting: Marketers can now see the impact of personalization on the conversions for individual goals which helps evaluate campaign effectiveness. -- Data Purge on Interactions: The ability to purge interactions, based on date, channel or if they contain a certain event. -- Streamlined Horizon editing: Further enhancemens of SXA on Horizon provides an a more integrated coherent platform and streamlined editing experiences. -- Scriban Template Improvements: Now at full parity with the classic Rendering Variants, frontend developers have more flexibility to fully express the HTML without the need to log in to Sitecore. -- Headless Rendering 19.0: Includes enhancements and new documentation to facilitate the inclusion of Sitecore MVC components in the output of the Layout Service and Experience Edge, and conversion of existing Sitecore MVC sites to Jamstack architectures using Next.js. -- Sitecore CLI 4.0: Provides improved release velocity with Items as resource plugin and security role serialization. - -See [all available versions here](/downloads/Sitecore_Experience_Platform). - -## Download options for Sitecore Container deployments - - | Resource | Description | - | --- | --- | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sxp%2F10.2.0.006766.1227) | The Sitecore Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore in development and production container environments. | - | [Installation Guide for Developer Workstation with Containers](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/Sitecore_XP_10_2_0_Developer_Workstation_Deployment_With_Docker-en.pdf) | This guide describes how to use Sitecore Containers with Docker Compose to deploy a developer workstation. | - | [Installation Guide for Production Environment with Kubernetes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/Sitecore_XP_10_2_0_Production_Deployment_With_Kubernetes-en.pdf) | This guide describes how to use Sitecore Containers with Kubernetes to deploy containers to the Azure Kubernetes Service. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - | [Upgrade Container Deployment Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/SC-XP-10.2.0-Upgrade-Container-Deployment-Guide-en.pdf) | Explains how to use the Sitecore Container Deployment Package to upgrade the SQL Server databases of an existing Sitecore XP 10.0.X installation to Sitecore XP 10.2.0. | - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Installation Framework](/downloads/Sitecore_Installation_Framework/2x/Sitecore_Installation_Framework_230) | Follow this link to download the Sitecore Installation Framework (SIF) PowerShell module. Please refer to the Sitecore Experience Platform installation guide for further information on how to install Sitecore with SIF. | - | [Scripts for Sitecore Security database](/downloads/Scripts_for_Sitecore_Security_database) | The package contains the set of scripts for moving Sitecore Security membership provider from the Core database to individual or existing one. | - | [Sitecore Remote Distributed Deployment SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Sitecore%20remote%20distributed%20installation%20templates.zip) | The package contains Sitecore Install Framework deployment templates that can be used to deploy Sitecore Experience Platform remotely to a scalable distributed server cluster from a single workstation or server. | - -## Download options for On Premises deployment - - | Resource | Description | - | --- | --- | - | [Graphical setup package for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/WDP/Sitecore%2010.2.0%20rev.%20006766%20(Setup%20XP0%20Developer%20Workstation%20rev.%201.4.0-r5).zip) | The Sitecore Install Assistant's user interface guides you through the Sitecore XP Developer Workstation (XP Single) installation. Use it to review system requirements, install prerequisites, and complete the entire installation process. | - | [Graphical setup package for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/WDP/Sitecore%2010.2.0%20rev.%20006766%20(Setup%20XM1%20Developer%20Workstation%20rev.%201.4.0-r5).zip) | The Sitecore Install Assistant's user interface guides you through the Sitecore XM Developer Workstation (XM Scaled) installation. Use it to review system requirements, install prerequisites, and complete the entire installation process. | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/WDP/Sitecore%2010.2.0%20rev.%20006766%20(WDP%20XP0%20packages).zip) | Packages for XP Single (XP0) Instance configuration. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/WDP/Sitecore%2010.2.0%20rev.%20006766%20(WDP%20XP1%20packages).zip) | Individual packages for each of the dedicated XP Scaled (XP1) roles. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/WDP/Sitecore%2010.2.0%20rev.%20006766%20(WDP%20XM1%20packages).zip) | Individual packages for each of the dedicated XM Scaled (XM1) roles. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/WDP/Sitecore%2010.2.0%20rev.%20006766%20(WDP%20XPSingle%20packages).zip) | Packages for XP Single (XP0) Instance configuration. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/WDP/Sitecore%2010.2.0%20rev.%20006766%20(WDP%20XPScaled%20packages).zip) | Individual packages for each of the dedicated XP Scaled (XP1) roles. | - | [Packages for XM Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/WDP/Sitecore%2010.2.0%20rev.%20006766%20(WDP%20XMSingle%20packages).zip) | Packages for XM Single (XM0) Instance configuration. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/WDP/Sitecore%2010.2.0%20rev.%20006766%20(WDP%20XMScaled%20packages).zip) | Individual packages for each of the dedicated XM Scaled (XM1) roles. | - | [Sitecore Azure Toolkit Resources](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/Sitecore%20Azure%20Toolkit%20Resources%2010.2.0%20rev.%20006766.zip) | Sitecore Azure Toolkit Resources package. | - -## Download options for Content Delivery Network CDN - - | Resource | Description | - | --- | --- | - | [Package for XM Scaled and XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Sitecore.Content.Delivery.Network.Provider.1.0.0-r00010.scwdp.zip) | CDN package for both XM Scaled and XP Scaled Content Delivery (CD) role. | - -## Download options for Blob Storage - - | Resource | Description | - | --- | --- | - | [Package for XM and XP](/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_411) | Blob Storage Package for XM Scaled, XP Scaled, XM Developer, XP Developer. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known issues](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1002735) | Choose this link to access the Sitecore Knowledge Base. | - | [Sitecore Installation Framework (SIF) Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/SC-Installation-Framework-2.3.0-Config-Guide-for%20SC-XP-10.2.0-en.pdf) | Explains how to use the SIF Microsoft PowerShell module to deploy and configure a Sitecore topology. | - | [Installation Guide for the XM Scaled topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/SC-XP-10.2.0-Install-Guide-XM-Scaled-Topology-en.pdf) | Explains how to install the Sitecore Experience Management (XM1) topology to run the Content Delivery (CD) and Content Management (CM) server roles, and the Sitecore Identity server. This topology does not support xDB and xConnect. | - | [Installation Guide for the XP Scaled topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/SC-XP-10.2.0-Install-Guide-XP-Scaled-Topology-en.pdf) | Explains how to install the fully featured Sitecore Experience Platform Installation (XP1) topology. This topology can be configured to run separated server roles. | - | [Quick Installation Guide for a Developer Workstation](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/SC-XP-10.2.0-Quick-Install-Guide-Developer-Workstation-en.pdf) | Explains how to install the XP Single (XP0) topology on a workstation for development and testing purposes. | - | [Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/SC-XP-10.2.0-Upgrade-Guide-en.pdf) | Explains how to directly upgrade from Sitecore XP 8.1.0 or later to Sitecore XP 10.2.0. | - | [Developer Documentation](https://doc.sitecore.com/xp/en/developers) | Link to Sitecore developer documentation. | - | [Assembly list](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/Sitecore.Platform.Assemblies%2010.2.0%20rev.%20006766.zip) | Complete list of assemblies shipped with this release. | - -## Modules - - | Resource | Description | - | --- | --- | - | [Sitecore CLI](/downloads/Sitecore_CLI/4x/Sitecore_CLI_400) | Download files and release information for latest compatible version of Sitecore CLI. | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales](/downloads/Dynamics_CRM_Connect/7x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_700) | Download files and release information for latest compatible version of Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Sitecore Connect for Salesforce CRM](/downloads/Salesforce_Connect/7x/Sitecore_Connect_for_Salesforce_CRM_700) | Download files and release information for latest compatible version of Sitecore Connect™ for Salesforce CRM. | - | [Sitecore Connect for Salesforce Marketing Cloud](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70) | Download files and release information for latest compatible version of Sitecore Connect™ for Salesforce Marketing Cloud. | - | [Sitecore Connect for Content Hub](/downloads/Sitecore_Connect_for_Content_Hub/4x/Sitecore_Connect_for_Content_Hub_400) | Download files and release information for latest compatible version of Sitecore Connect™ for Content Hub. | - | [Sitecore Data Exchange Framework](/downloads/Data_Exchange_Framework/7x/Data_Exchange_Framework_700) | Download files and release information for latest compatible version of Sitecore Data Exchange Framework. | - | [Sitecore Experience Accelerator](/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1020) | Download files and release information for latest compatible version of Sitecore Experience Accelerator. | - | [Sitecore Headless Rendering](/downloads/Sitecore_Headless_Rendering/19x/Sitecore_Headless_Rendering_1900) | Download files and release information for latest compatible version of Sitecore Headless Rendering. | - | [Sitecore Horizon](/downloads/Sitecore_Horizon/100/Sitecore_Horizon_1020) | Sitecore Horizon is the next generation Experience Management product for the Sitecore Experience Platform™. | - | [Sitecore Identity](/downloads/Sitecore_Identity/6x/Sitecore_Identity_600) | Download files and release information for latest compatible version of Sitecore Identity. | - | [Sitecore Publishing Service Module](/downloads/Sitecore_Publishing_Service_Module/10x/Sitecore_Publishing_Service_Module_1020) | Download files and release information for latest compatible version of Sitecore Publishing Service Module. | - -## Upgrade options - - | Resource | Description | - | --- | --- | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/Sitecore%2010.2.0%20rev.%20006766%20(upgrade%20files).zip) | This package contains configuration files and database scripts for the upgrade. | - | [Sitecore UpdateApp Tool](/downloads/Sitecore_UpdateApp_Tool/1x/Sitecore_UpdateApp_Tool_120) | Updates the Core, Master, and Web databases. | - | [Resource files for Modules](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Module resource files for upgrading Core, Master and Web. | - -## Client translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/Translations/Sitecore%2010.2.0%20rev.%20006766%20(da-DK).zip) | Danish language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/Translations/Sitecore%2010.2.0%20rev.%20006766%20(de-DE).zip) | German language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/Translations/Sitecore%2010.2.0%20rev.%20006766%20(ja-JP).zip) | Japanese language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/Translations/Sitecore%2010.2.0%20rev.%20006766%20(zh-CN).zip) | Chinese language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Chinese GeoIP Localization Pack](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/90/Sitecore%20Experience%20Platform%2090%20Initial%20Release/Secure/GeoIp%20Location%20China%20Localization%20Pack%201.0.0%20rev.%20180226.zip) | The pack provides enhanced region detection for China. The pack should be installed as a regular Sitecore module. | - -## Usage policies - - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - - - - Please note that as part of your system upgrade to Sitecore Version 10.2, Sitecore may collect additional information such as product version, number of site visits, generic hardware and software information, and recovery actions. This information will be used to help us to optimize your experience. All data will be processed in accordance with Sitecore’s privacy policy [here](https://www.sitecore.com/trust/privacy-policy). Should you have any queries or wish to discuss this, [please refer to our FAQ](https://kb.sitecore.net/articles/424335), or contact your Sitecore Account Manager. - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102_Update1/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102_Update1/Release_Notes.md deleted file mode 100644 index 1c7ba7b28..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102_Update1/Release_Notes.md +++ /dev/null @@ -1,103 +0,0 @@ ---- -title: 'Release notes' -description: '' -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102_Update1/Release_Notes ---- - -**September 2023 – released Sitecore Experience Platform 10.2.1 rev. 009559** - -This is a product update. Sitecore recommends that you upgrade to this release to apply the fixes and improvements implemented since the initial release of this product version. - -- [New features/improvements](#new-featuresimprovements) -- [Known issues](#known-issues) -- [Resolved issues](#resolved-issues) - -## New features/improvements - -| Context | Description | ADO no. | -| ------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------- | -| Publishing | Improved Edge publishing performance by replacing the exception handling mechanism in the `ID.TryParse` implementation. | 585529 | -| Users | You can now manage roles behavior for external users using the `` setting. | 534067 | -| Containers | The Sitecore XP 10.2.1 container image has been updated to use Sitecore Identity 7 based on .NET 6.0. See modules compatibility in [KB1000576](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1000576). | 572914 | -| Containers | The Traefik container image has been updated from version 2.5.3 to 2.9.8. | 575657 | -| Containers | The Kubernetes specifications now include the Container Storage Interface (CSI) driver for Persistent Volumes, replacing the `in-tree` plugin. | 563767 | -| Installation | You can now change the default package installation behavior so that the item in the target database preserves the version numbers from the source database. | 193262, 565562 | -| Installation | In the prerequisites for SIF installation, the .NET hosting bundle has been upgraded to version 6.0.x. | 573418 | -| Compatibility | Sitecore Installation Assistant 1.4.1 supports Sitecore XP 10.2.1. | 578070 | -| Compatibility | The patch level version of Identity Server to 7.0.327 has been updated, which includes security updates. | 590371 | -| Compatibility | `ICSharpCode.SharpZipLib` has been updated to version 1.4.2. | 578988 | - -## Known issues - -The following is a known issue: - -| Context | Description | ADO no. | -| ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------ | -| Media | When a media blob is referenced by multiple duplicated media items, deleting one of these duplicated items will result in the deletion of the media blob. | 563054 | - -## Resolved issues - -The following issues have been fixed: - -| Context | Description | ADO no. | -| ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------ | -| Content Editor | When xConnect is not running, working in the Content Editor displays an error message, whereas Content Editor operations should be unimpacted. | 497506 | -| Content Editor | Media upload with `Overwrite existing media items` and `Make uploaded media items versionable` does not clear Shared fields | 558081 | -| Experience Editor | The values of single-line text and the multi-line text fields are not displayed in the Experience Editor. See [KB1002418](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1002418). | 507001 | -| Experience Editor | The preview date and time dialog in the Experience Editor ignores the date/time format preference. | 565729 | -| Experience Editor | HTML tags are removed from a single-line text field when editing and saving other fields. | 522604 | -| Experience Editor | In the Experience Editor, inputs in the Rich Text Editor's HTML tab will not be saved if they include nested tags. | 568200 | -| Experience Editor | Duplicate renderings in the `Add Rendering` dialog in Experience Editor. If your deployment includes Sitecore Experience Accelerator (SXA) or Experience Commerce (XC), then this update requires installing SXA hotfix version `SC Hotfix 581375-1 SXA 10.2.0.4247` or higher. See [KB1001757](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1001757). | 573497 | -| Forms | If language fallback is enabled, a `You cannot edit the 'the form' item because it is protected..."` error occurs and you are unable to save a language version of a form. | 485274 | -| Forms | Field validation upon saving a form can be bypassed by changing related data inputs. | 490008 | -| Forms | Language-specifc and special characters get stripped from form labels. | 502894 | -| Forms | After adding a `Redirect to a page` submit action to a form, the selected item is not displayed in the Content Tree and the Content Tree remains collapsed. | 566609 | -| Publishing | If the `ItemCloning.DeleteClonesWithOriginalItem` setting is set to `true`, the `PublishManager.DataEngine_DeletedItem` method throws a `NullReferenceException`. | 450353 | -| Publishing | When deleting an item that has clones and more than one language, the `PublishManager.DataEngine_DeletedItem` method throws a `NullReferenceException`. | 523123 | -| Publishing | `Publishing.CheckSecurity` does not allow authenticated external users to publish a change to a content item. | 526576, 526577 | -| Publishing | If a virtual user publishes items several times, the ribbon in the Content Editor becomes collapsed. | 554564 | -| Publishing | When a shared Renderings delta is present in the language without a rendering ID, an `ArgumentNullException` is thrown on Edge publishing. | 578684 | -| Authentication | The `RequireLogin` attribute breaks the logic of authentication to the configured login page of the front end site. | 229436 | -| Authentication | When you log into the Sitecore external site via the external identity provider, a `Sitecore` title appears on the browser tab. | 510418 | -| Users | If you create a virtual user with a name that contains only numeric characters, an exception is thrown. | 381683 | -| Users | The `Custom Properties` of a virtual user are lost during `RuntimeSetting` serialization. | 531248 | -| Users | If a virtual user logs in via AzureAD, an endless redirect loop in Horizon may occur. | 555286 | -| Search | Searching using the Search tab does not resolve access permissions correctly. | 477223 | -| Search | A permission-enabled search does not function correctly in a nested roles scenario. | 493002 | -| Search | In Content Tree search, the value of the `Search.ContentTreeSearch.MaxResults` setting is ignored. | 515248 | -| Search | Search operations, like deleting search results, do not track the user who performed the operation, running instead under an anonymous user. | 529807 | -| Search | Multi-term fuzzy search does not return any results. This can be a breaking change for deployments moving from Azure Search to Solr. | 559137 | -| Search | Search indexes may include excluded items as a result of adding new item versions. | 580395 | -| Sitecore CLI | When you rename an item using the Sitecore CLI, `LayoutData` does not publish and the old `LayoutData` is still available. | 581503 | -| xDB | xDB stored procedures can lead to an infinite loop inside the SQL Server, causing high DTU usage. | 412448 | -| xDB | `SC_ANALYTICS_GLOBAL_COOKIE` continues to remain active even after a customer has revoked the permission to collect cookies. | 589304 | -| Personalization | Tracking fails to adhere to visitor's consent preferences, with the `SC_ANALYTICS_GLOBAL_COOKIE` cookie being set despite setting `explicitConsentForTrackingIsRequired`. | 526015 | -| Personalization | Long personalization rules break the Experience Editor. | 558847 | -| Content Testing | Errors occur when selecting a goal on the conversion rate from a page test on a non-English language. | 301732 | -| Content Testing | In Mozilla Firefox, the item does not move to the next workflow state via `Approve with test`. | 575840 | -| Marketing Automation | The `goal taxonomy facet` rule in a Marketing Automation plan does not work when the number of goal items exceeds 20. | 552034 | -| Email Experience Manager | When EXM is enabled in two Content Management (CM) instances, the email campaign job status is not retrievable in the second CM instance. | 569634 | -| Email Experience Manager | Upon selecting the `Edit the related item` context menu button, the embedded Content Editor does not display as expected. | 587814 | -| Platform | When you insert snippets, the `
` and `

` tags do not display correctly. | 329704 | -| Platform | After a warm disaster recovery process is triggered, Sitecore tries to connect to the original SolrCloud server. See [KB1000745](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1000745). | 447307 | -| Platform | The hidden `File Upload` field is validated and cannot be disabled because the field uses a different hidden field ID. | 483476 | -| Platform | When you enter an anchor tag `Text`, the rendered HTML becomes `Text` on the front end. | 489654 | -| Platform | If you access `LayoutCache.GetCacheKeys()`, the entire concurrent dictionary gets locked. | 499061 | -| Platform | After publishing a new language and enabling its fallback language, the requested page does not display and a `This site cannot be reached` error occurs. | 509668 | -| Platform | If you do not execute the `GetCustomProperty` and `SetCustomProperty` methods in the same request, the custom properties of a virtual user are not fetched from the database. | 510291 | -| Platform | In the Control Panel, after running the `Rebuild link databases` operation, the tables are populated with many duplicates. | 526584 | -| Platform | Retrieving the child items of resource items is not thread-safe. See [KB1001823](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=_KB1001823). | 530961 | -| Platform | Redis session state is not always locked while processing a request. | 535277 | -| Platform | When a target site is resolved, it uses the site `rootPath` and language but ignores the database. | 537827 | -| Platform | In the HTML editor, when you use alt codes inside the `href` attribute, the output includes an additional, unnecessary symbol. | 549048 | -| Platform | `StartItem` is ignored when resolving a site. | 569444 | -| Platform | The Search API may return incorrect results under load such as an SXA Checklist disappearing in an XM topology. | 575400, 578068 | -| Platform | A deadlock can occur on application start if aggregation runs for the first time and `DeviceResolver` runs simultaneously. | 582497 | -| Platform | Page crashes after inserting an image in the Rich Text Editor in a Chrome or Edge browser. See [KB1003010](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1003010). | 584490 | -| Performance | Removing multiple content items creates a separate request to Solr for each removed document. This can lead to performance-related errors such as exceeding the number of queued requests. | 561871 | -| Containers | When you deploy the `mssql-init` container that connects to Azure SQL, you may receive a message that the compatibility level may result in undefined behavior. | 559550 | -| Installation | When you add items using package installation, some items switch to an empty version and appear to have lost their content. | 524238 | -| Installation | Deploying Sitecore XP using SIF fails due to retired Microsoft Web Platform Installer. See [KB1003017](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1003017). | 570314 | -| Installation | An `ERROR_SMO_NEEDED_FOR_SQL_PROVIDER` error occurs when installing Sitecore Experience Platform. See [KB1003024](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1003024). | 582977 | -| Installation | The installation of Sitecore XP fails on a machine with SQL Server PowerShell Module version 22.0.xx or later. See [KB1003015](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1003015). | 580538 | -| Security | Potential security vulnerabilities have been resolved. See [KB1002925](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1002925), [KB1003018](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1003018). | 390299, 500712, 568150, 576660, 582720, 584731, 586117 | diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102_Update1/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102_Update1/index.md deleted file mode 100644 index 985f8be74..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102_Update1/index.md +++ /dev/null @@ -1,119 +0,0 @@ ---- -title: "Sitecore Experience Platform 10.2 Update-1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102_Update1.aspx ---- - -Update-1 to Sitecore Experience Platform 10.2. - -See [all available versions here](/downloads/Sitecore_Experience_Platform). - -## Download options for Sitecore Container deployments - - | Resource | Description | - | --- | --- | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/10.2.1.009559.1564) | The Sitecore Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore in development and production container environments. | - | [Installation Guide for Developer Workstation with Containers](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/SC-XP-10.2.1-Developer_Workstation_Deployment_With_Docker-en.pdf) | This guide describes how to use Sitecore Containers with Docker Compose to deploy a developer workstation. | - | [Installation Guide for Production Environment with Kubernetes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/SC-XP-10.2.1-Production_Deployment_With_Kubernetes-en.pdf) | This guide describes how to use Sitecore Containers with Kubernetes to deploy containers to the Azure Kubernetes Service. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - | [Upgrade Container Deployment Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/SC-XP-10.2.1-Sitecore_Upgrade_Container_Deployment_Guide-en.pdf) | Explains how to use the Sitecore Container Deployment Package to upgrade the SQL Server databases of an existing Sitecore XP 10.0.X installation to Sitecore XP 10.2.1. | - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Installation Framework](/downloads/Sitecore_Installation_Framework/2x/Sitecore_Installation_Framework_230) | Follow this link to download the Sitecore Installation Framework (SIF) PowerShell module. Please refer to the Sitecore Experience Platform installation guide for further information on how to install Sitecore with SIF. | - | [Scripts for Sitecore Security database](/downloads/Scripts_for_Sitecore_Security_database) | The package contains the set of scripts for moving Sitecore Security membership provider from the Core database to individual or existing one. | - | [Sitecore Remote Distributed Deployment SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Sitecore%20remote%20distributed%20installation%20templates.zip) | The package contains Sitecore Install Framework deployment templates that can be used to deploy Sitecore Experience Platform remotely to a scalable distributed server cluster from a single workstation or server. | - -## Download options for On Premises deployment - - | Resource | Description | - | --- | --- | - | [Graphical setup package for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/WDP/Sitecore%2010.2.1%20rev.%20009559%20(Setup%20XP0%20Developer%20Workstation%20rev.%201.4.1-r2).zip) | The Sitecore Install Assistant's user interface guides you through the Sitecore XP Developer Workstation (XP Single) installation. Use it to review system requirements, install prerequisites, and complete the entire installation process. | - | [Graphical setup package for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/WDP/Sitecore%2010.2.1%20rev.%20009559%20(Setup%20XM1%20Developer%20Workstation%20rev.%201.4.1-r2).zip) | The Sitecore Install Assistant's user interface guides you through the Sitecore XM Developer Workstation (XM Scaled) installation. Use it to review system requirements, install prerequisites, and complete the entire installation process. | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/WDP/Sitecore%2010.2.1%20rev.%20009559%20(WDP%20XP0%20packages).zip) | Packages for XP Single (XP0) Instance configuration. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/WDP/Sitecore%2010.2.1%20rev.%20009559%20(WDP%20XP1%20packages).zip) | Individual packages for each of the dedicated XP Scaled (XP1) roles. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/WDP/Sitecore%2010.2.1%20rev.%20009559%20(WDP%20XM1%20packages).zip) | Individual packages for each of the dedicated XM Scaled (XM1) roles. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/WDP/Sitecore%2010.2.1%20rev.%20009559%20(WDP%20XPSingle%20packages).zip) | Packages for XP Single (XP0) Instance configuration. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/WDP/Sitecore%2010.2.1%20rev.%20009559%20(WDP%20XPScaled%20packages).zip) | Individual packages for each of the dedicated XP Scaled (XP1) roles. | - | [Packages for XM Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/WDP/Sitecore%2010.2.1%20rev.%20009559%20(WDP%20XMSingle%20packages).zip) | Packages for XM Single (XM0) Instance configuration. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/WDP/Sitecore%2010.2.1%20rev.%20009559%20(WDP%20XMScaled%20packages).zip) | Individual packages for each of the dedicated XM Scaled (XM1) roles. | - | [Sitecore Azure Toolkit Resources](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/Sitecore%20Azure%20Toolkit%20Resources%2010.2.1%20rev.%20009559.zip) | Sitecore Azure Toolkit Resources package. | - -## Download options for Content Delivery Network CDN - - | Resource | Description | - | --- | --- | - | [Package for XM Scaled and XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Sitecore.Content.Delivery.Network.Provider.1.0.0-r00010.scwdp.zip) | CDN package for both XM Scaled and XP Scaled Content Delivery (CD) role. | - -## Download options for Blob Storage - - | Resource | Description | - | --- | --- | - | [Package for XM and XP](/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_411) | Blob Storage Package for XM Scaled, XP Scaled, XM Developer, XP Developer. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102_Update1/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known issues](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1002735) | Link to known SXP 10.2.0 (Initial Release) issues on the Sitecore Knowledge Base. At time of release there are no known issues specific to SXP 10.2 Update-1. | - | [Sitecore Installation Framework (SIF) Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102/Secure/SC-Installation-Framework-2.3.0-Config-Guide-for%20SC-XP-10.2.0-en.pdf) | Explains how to use the SIF Microsoft PowerShell module to deploy and configure a Sitecore topology. | - | [Installation Guide for the XM Scaled topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/SC-XP-10.2.1-Installation_Guide_for_the_XM_Scaled_Topology-en.pdf) | Explains how to install the Sitecore Experience Management (XM1) topology to run the Content Delivery (CD) and Content Management (CM) server roles, and the Sitecore Identity server. This topology does not support xDB and xConnect. | - | [Installation Guide for the XP Scaled topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/SC-XP-10.2.1-Installation_Guide_for_the_XP_Scaled_topology-en.pdf) | Explains how to install the fully featured Sitecore Experience Platform Installation (XP1) topology. This topology can be configured to run separated server roles. | - | [Quick Installation Guide for a Developer Workstation](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/SC-XP-10.2.1-Quick_Installation_Guide_for_a_Developer_Workstation-en.pdf) | Explains how to install the XP Single (XP0) topology on a workstation for development and testing purposes. | - | [Update Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/SC-XP-10.2.1-Update_Installation_Guide-en_v2.pdf) | Explains how to update to the latest release in the Sitecore 10.2.X series. | - | [Developer Documentation](https://doc.sitecore.com/xp/en/developers) | Link to Sitecore developer documentation. | - | [Assembly list](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/Sitecore.Platform.Assemblies%2010.2.1%20rev.%20009559.zip) | Complete list of assemblies shipped with this release. | - -## Modules - - | Resource | Description | - | --- | --- | - | [Sitecore CLI](/downloads/Sitecore_CLI/5x/Sitecore_CLI_52113) | Download files and release information for latest compatible version of Sitecore CLI. | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales](/downloads/Dynamics_CRM_Connect/7x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_700) | Download files and release information for latest compatible version of Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Sitecore Connect for Salesforce CRM](/downloads/Salesforce_Connect/7x/Sitecore_Connect_for_Salesforce_CRM_700) | Download files and release information for latest compatible version of Sitecore Connect™ for Salesforce CRM. | - | [Sitecore Connect for Salesforce Marketing Cloud](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70) | Download files and release information for latest compatible version of Sitecore Connect™ for Salesforce Marketing Cloud. | - | [Sitecore Connect for Content Hub](/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_500) | Download files and release information for latest compatible version of Sitecore Connect™ for Content Hub. | - | [Sitecore Data Exchange Framework](/downloads/Data_Exchange_Framework/7x/Data_Exchange_Framework_700) | Download files and release information for latest compatible version of Sitecore Data Exchange Framework. | - | [Sitecore Experience Accelerator](/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1020) | Download files and release information for latest compatible version of Sitecore Experience Accelerator. To ensure compatibility with the latest Sitecore XP 10.2.x update release, also install the latest cumulative hotfix for SXA 10.2.0. See KB1001757.  | - | [Sitecore Headless Rendering](/downloads/Sitecore_Headless_Rendering/20x/Sitecore_Headless_Rendering_2002) | Download files and release information for latest compatible version of Sitecore Headless Rendering. | - | [Sitecore Horizon](/downloads/Sitecore_Horizon/100/Sitecore_Horizon_1020) | Sitecore Horizon is the next generation Experience Management product for the Sitecore Experience Platform™. | - | [Sitecore Identity](/downloads/Sitecore_Identity/7x/Sitecore_Identity_70327) | Download files and release information for latest compatible version of Sitecore Identity. | - | [Sitecore Publishing Service Module](/downloads/Sitecore_Publishing_Service_Module/10x/Sitecore_Publishing_Service_Module_1020) | Download files and release information for latest compatible version of Sitecore Publishing Service Module. | - -## Upgrade options - - | Resource | Description | - | --- | --- | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/Sitecore%2010.2.1%20rev.%20009559%20(upgrade%20files).zip) | This package contains configuration files and database scripts for the upgrade. | - | [Sitecore UpdateApp Tool](/downloads/Sitecore_UpdateApp_Tool/1x/Sitecore_UpdateApp_Tool_120) | Updates the Core, Master, and Web databases. | - | [Resource files for Modules](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Module resource files for upgrading Core, Master and Web. | - -## Client translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/Translations/Sitecore%2010.2.1%20rev.%20009559%20(da-DK).zip) | Danish language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/Translations/Sitecore%2010.2.1%20rev.%20009559%20(de-DE).zip) | German language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/Translations/Sitecore%2010.2.1%20rev.%20009559%20(ja-JP).zip) | Japanese language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore%20Experience%20Platform%20102%20Update1/Secure/Translations/Sitecore%2010.2.1%20rev.%20009559%20(zh-CN).zip) | Chinese language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Chinese GeoIP Localization Pack](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/90/Sitecore%20Experience%20Platform%2090%20Initial%20Release/Secure/GeoIp%20Location%20China%20Localization%20Pack%201.0.0%20rev.%20180226.zip) | The pack provides enhanced region detection for China. The pack should be installed as a regular Sitecore module. | - -## Usage policies - - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - - - - Please note that as part of your system upgrade to Sitecore Version 10.2, Sitecore may collect additional information such as product version, number of site visits, generic hardware and software information, and recovery actions. This information will be used to help us to optimize your experience. All data will be processed in accordance with Sitecore’s privacy policy [here](https://www.sitecore.com/trust/privacy-policy). Should you have any queries or wish to discuss this, [please refer to our FAQ](https://kb.sitecore.net/articles/424335), or contact your Sitecore Account Manager. - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102_Update2/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102_Update2/Release_Notes.md deleted file mode 100644 index 341dad592..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102_Update2/Release_Notes.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: 'Release notes' -description: '' ---- - -**June 2024 – released Sitecore Experience Platform 10.2.2 rev. 010645** - -This is a product update. Sitecore recommends that you upgrade to this release to apply the fixes and improvements implemented since the initial release of this product version. - -- [New features/improvements](#new-featuresimprovements) -- [Resolved issues](#resolved-issues) - -## New features/improvements - | Context | Description | ADO no. | - | --- | --- | --- | - | Platform | Updated the `ChilkatDotNet47.dll` library version to 9.5.0.77. | 615207 | - | Platform | Added the ability to enable LiveMode in SiteContext in runtime. | 585571 | - | Platform | Updated the Sitecore Installation Assistant to version 1.4.2, as part of adding support for the SXP 10.2.2 update release. This tool is available on the SXP 10.2.2 Downloads page in the *Download options for On Premises deployments* section; see *Installation Assistant for XM Scaled* and *Installation Assistant for XP Single*. | N/A | - | Platform | Updated the Traefik container image​​ to version 2.11.0. | 615165 | - | Platform | Updated the default SQL server version for container deployments - from an older SQl version to SQL 2019; published a new mssql-developer:2019-ltsc2019(ltsc2022) image. | 614529 | - | Security | Enhanced security in product and 3rd party libraries to reduce potential vulnerabilities. | 594651, 606641, 609758, 615391 | - -## Resolved issues - | Context | Description | ADO no. | - | --- | --- | --- | - | Content Editor | Opening an item from the Content Editor _Navigate_ tab results in an _Object reference not set to an instance of an object_ error. | 491656 | - | Experience Editor | Simultaneous launch of Experience Editor in two browsers after restarting the Sitecore instance causes one of them to crash. | 412499 | - | Experience Editor | Breadcrumbs do not resolve the correct site when clicking the _Go_ button without selecting any item. | 597335 | - | Experience Editor | A Mutex corruption blocks all requests to open Experience Editor. | 603194 | - | Experience Editor | A Speak request is using wrong site context in preview mode. | 607142 | - | Rich Text Editor | The internal link to a versioned media item added in the Rich Text Editor contains the wrong language. | 592307 | - | Rich Text Editor | The internal link to a versioned media item added in the Rich Text Editor contains the wrong language using a Sitecore link via Search when `languageEmbedding` is set to _always_. | 592301 | - | Publishing | Previewing unpublishable items is not possible even when setting `previewUnpublishableItems` to _true_. | 498395 | - | Forms | A multipage form validates fields even though the page has been skipped. | 592310 | - | Forms | _Unable to access a closed stream_ error occurs while saving files from filestorage table to disk. | 603638 | - | Processing | A cumulative hotfix applied on Sitecore XP 10.2 creates deadlocks in an XP1 topology. | 591897 | - | Experience Apps | The LeaderBoard is empty when selecting it from the _Reports_. | 597461 | - | Personalization | No rule fact resolver can be found for `ISegmentationServiceContext` when using a filter with _goal taxonomy facet_ rule. | 516003 | - | Personalization | Long personalization rules in the segmented list leads to a serialization exception. | 589574 | - | Marketing Automation | Scheduled enrollment adds contacts to Marketing Automation plans even if a plan is inactive. | 605291 | - | Marketing Automation | Workitem processing does not check the plan state, e.g. _Active_ or _Inactive_. | 613815 | - | Marketing Automation | Scheduled enrollment does not respect the maximum enrollment setting. | 614401 | - | Email Experience Manager | The email campaign description does not support special characters. | 604409 | - | Email Experience Manager | The `EmailOpenedEvent` is saved against source contact after merging a known contact (source contact) into a known contact (target contact). | 608291 | - | Universal Tracker | A _System.ArgumentException_ error may occur after retrieving a contact by multiple identifiers in a single batch. | 606531 | - | Platform | Extraction of shared media content is performed for each language during indexing. | 324449 | - | Platform | `GetDataSourceItemByQuery` aborts the pipeline even if it could not process the data source. | 486907 | - | Platform | A _BlobProviderException_ occurs when publishing a site item if the media was detached from the item. | 490149 | - | Platform | The `GetRenderingContentDependenciesPipeline` crashes when there are broken links. | 593160 | - | Platform | Recursive related items in a content dependency is not working as expected. | 593054 | - | Platform | Recursive related items and related items in a content dependency returns all items in all languages. | 593323 | - | Platform | Unable to login virtual user in the `httpRequestBegin` pipeline after installing previous SXP 10.2 hotfix #554564. | 594111 | - | Platform | LiveModeEnabler does not support publishing in preview mode. | 605729 | - | Platform | Wrong method name _OnDoubleClick_ in `Sitecore.Reflection.Filtering.config`. | 589519 | - | Platform | The .pdf file should be opened in _ReadOnly_ mode when its content is read for indexing. | 591674 | - | Platform | the `ResizeProcessor` may be inefficient when invoked for non-image media. | 595667 | - | Platform | Media files are stored on the file system during indexing. | 595670 | - | Platform | Creating a validation rule with parameter _Result=FatalError_ does not allow standard values to be saved. | 598149 | - | Platform | A DataEngine deadlock can occur between two threads that are making changes to unrelated items. | 599633 | - | Platform | Content extraction of many .pdf files using PdfSharp may consume excessive CPU resources. | 604026 | - | Platform | Accessing a Sitecore URL such as _https://(CD domain)/(item ID format)_ results in an _Object reference not set to an instance of an object_ error. | 609009 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102_Update2/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102_Update2/index.md deleted file mode 100644 index 830d5c45b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102_Update2/index.md +++ /dev/null @@ -1,91 +0,0 @@ ---- -title: "Sitecore Experience Platform 10.2 Update-2" ---- - -Update-2 to Sitecore Experience Platform 10.2.\ -See [all available versions here](/downloads/Sitecore_Experience_Platform). - -## Download options for Azure App Service deployments - | Resource | Description | - | --- | --- | - | [Packages for XM Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/Sitecore%2010.2.2%20rev.%20010645%20(WDP%20XMSingle%20packages).zip) | Packages for the Sitecore XM Single (XM0) instance topology. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/Sitecore%2010.2.2%20rev.%20010645%20(WDP%20XMScaled%20packages).zip) | Packages for each role of the Sitecore XM Scaled (XM1) topology. | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/Sitecore%2010.2.2%20rev.%20010645%20(WDP%20XPSingle%20packages).zip) | Packages for the Sitecore XP Single (XP0) instance topology. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/Sitecore%2010.2.2%20rev.%20010645%20(WDP%20XPScaled%20packages).zip) | Packages for each role of the Sitecore XP Scaled (XP1) topology. | - | [Sitecore Azure Toolkit Resources](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/Sitecore%20Azure%20Toolkit%20Resources%2010.2.2%20rev.%20010645.zip) | Sitecore Azure Toolkit Resources package. | - -## Download options for On Premises deployments - | Resource | Description | - | --- | --- | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/Sitecore%2010.2.2%20rev.%20010645%20(WDP%20XM1%20packages).zip) | Packages for each role of the Sitecore XM Scaled (XM1) topology. | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/Sitecore%2010.2.2%20rev.%20010645%20(WDP%20XP0%20packages).zip) | Packages for the Sitecore XP Single (XP0) instance topology. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/Sitecore%2010.2.2%20rev.%20010645%20(WDP%20XP1%20packages).zip) | Packages for each role of the Sitecore XP Scaled (XP1) topology. | - | [Installation Assistant for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/Sitecore%2010.2.2%20rev.%20010645%20(Setup%20XM1%20Developer%20Workstation%20rev.%201.4.2-r5).zip) | Sitecore Install Assistant tool and resources for installing a Sitecore XM Scaled (XM1) topology. | - | [Installation Assistant for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/Sitecore%2010.2.2%20rev.%20010645%20(Setup%20XP0%20Developer%20Workstation%20rev.%201.4.2-r5).zip) | Sitecore Install Assistant tool and resources for installing a Sitecore XP Single (XP0) topology. | - | [Sitecore Installation Framework](/downloads/Sitecore_Installation_Framework/2x/Sitecore_Installation_Framework_240) | Tooling for configuring and deploying Sitecore topologies to local or remote servers or virtual machines. | - | [SIF Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Installation%20Framework/2x/Sitecore%20Installation%20Framework%20240/Secure/Sitecore_Installation_Framework_Configuration_Guide-2.4.0.pdf) | Guide describing how to use the Sitecore Installation Framework (SIF), Microsoft PowerShell module to deploy and configure a Sitecore topology. | - | [Installation Guide for XM Scaled Topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/1355381-Installation_Guide_for_the_XM_Scaled_Topology_10_2-pdf-en.pdf) | Guide describing how to install the Sitecore XM Scaled (XM1) topology to run the Content Management (CM), Content Delivery (CD),and Sitecore Identity roles. | - | [Quick Install Guide for XP Developer Workstation](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/1355485-Quick_Installation_Guide_for_a_Developer_Workstation_10_2-pdf-en.pdf) | Guide describing how to install the Sitecore XP Single (XP0) topology on a workstation for development and testing purposes. | - | [Installation Guide for XP Scaled Topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/1355430-Installation_Guide_for_the_XP_Scaled_topology_10_2-pdf-en.pdf) | Guide describing how to install the Sitecore XP Scaled (XP1) topology. | - | [Sitecore UpdateApp Tool](/downloads/Sitecore_UpdateApp_Tool/1x/Sitecore_UpdateApp_Tool_120) | Tool for updating SXP Core, Master, and Web databases. | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/Sitecore%2010.2.2%20rev.%20010645%20(upgrade%20files).zip) | Package containing configuration files and database scripts for upgrading. | - | [Update Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/Sitecore-XP-10.2.X-Update_Installation_Guide.pdf) | Guide describing how to update to the latest release in the Sitecore 10.2.X series. | - -## Download options for Sitecore Container deployments - | Resource | Description | - | --- | --- | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/10.2.2.010645.1838) | Link to the Sitecore Container Deployment Package on GitHub, containing Docker Compose and Kubernetes specification files for deploying Sitecore in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on the Sitecore Container Registry (SCR). | - | [Developer Workstation Deployment with Docker Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/1129990-Sitecore_XP_10_2_X_Developer_Workstation_Deployment_With_Docker-pdf-en.pdf) | Guide describing how to use Sitecore Containers with Docker Compose to deploy a developer workstation. | - | [Production Environment Deployment with Kubernetes Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/1149580-Sitecore_XP_10_2_X_Production_Deployment_With_Kubernetes-pdf-en.pdf) | Guide describing how to use Sitecore Containers with Kubernetes to deploy to the Azure Kubernetes Service. | - | [Upgrade Container Deployment Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/1130529-Sitecore_Upgrade_Container_Deployment_Guide_10_2_X-pdf-en.pdf) | Guide describing how to use the Sitecore Container Deployment Package to upgrade the SQL Server databases from an existing Sitecore XP 10.0.X installation. | - -## Modules - | Resource | Description | - | --- | --- | - | [Sitecore Identity Server](/downloads/Sitecore_Identity/7x/Sitecore_Identity_70331) | Single sign-on mechanism for SXP deployments, used with Sitecore's membership storage or can be extended for use with an external identity provider. | - | [Scripts for Sitecore Security database](/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_05) | Set of scripts for moving Sitecore's Security membership objects from the Core database to its own security database. | - | [Sitecore Experience Accelerator](/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1020) | Tools to accelerate the production of SXP websites enabled by reuse of templates, layouts, and renderings. | - | [Azure Blob Storage](/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_411) | Azure Blob Storage package for XM Developer, XM Scaled, XP Developer, XP Scaled configurations. | - | [Sitecore Publishing Service Module](/downloads/Sitecore_Publishing_Service_Module/10x/Sitecore_Publishing_Service_Module_1020) | Integrates the optional Sitecore Publishing Service with SXP, which focuses on high performance publishing in large-scale deployments. | - | [Sitecore Headless Rendering](/downloads/Sitecore_Headless_Rendering/20x/Sitecore_Headless_Rendering_2002) | Headless services bundle including the server-side APIs, Edge Connector, and front-end SDKs for JavaScript (JSS) and ASP.NET rendering. | - | [Sitecore Horizon](/downloads/Sitecore_Horizon/100/Sitecore_Horizon_1020) | Sitecore Horizon provides a next generation experience management option for Sitecore XP. | - | [Resource files for Modules](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Module resource files for upgrading Core, Master and Web. | - -## Connectors - | Resource | Description | - | --- | --- | - | [Sitecore Connect for Content Hub](/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_500) | Connector for synchronizing data between SXP and Content Hub. | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales](/downloads/Dynamics_CRM_Connect/7x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_700) | Connector for synchronizing data between SXP and Microsoft Dynamics 365 for Sales. | - | [Sitecore Connect for Salesforce CRM](/downloads/Salesforce_Connect/7x/Sitecore_Connect_for_Salesforce_CRM_700) | Connector for synchronizing data between SXP and Salesforce CRM. | - | [Sitecore Connect for Salesforce Marketing Cloud](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_70) | Connector for synchronizing data between SXP and Salesforce Marketing Cloud. | - | [Sitecore Data Exchange Framework](/downloads/Data_Exchange_Framework/7x/Data_Exchange_Framework_700) | Framework for transforming and transferring data between SXP and 3rd party systems. | - -## Release information - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Experience_Platform/102/Sitecore_Experience_Platform_102_Update2/Release_Notes) | List of improvements and resolved issues implemented in the release. | - | [Known issues](https://support.sitecore.com/kb?id=kb_search&kb_knowledge_base=3492d025db70dc109e54320a6896199f&spa=1&language=en&u_affected_software=sitecore_experience_platform) | Link to known issue articles on the Sitecore Knowledge Base. | - | [Developer Documentation](https://doc.sitecore.com/xp/en/developers) | Link to Sitecore developer documentation. | - | [Assembly list](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/Sitecore.Platform.Assemblies%2010.2.2%20rev.%20010645.zip) | Complete list of assemblies shipped with the release. | - -## Client translations - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/Sitecore%2010.2.2%20rev.%20010645%20(da-DK).zip) | Danish language client translation file. See [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) on how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/Sitecore%2010.2.2%20rev.%20010645%20(de-DE).zip) | German language client translation file. See [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) on how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/Sitecore%2010.2.2%20rev.%20010645%20(ja-JP).zip) | Japanese language client translation file. See [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) on how to import a new language into the Sitecore installation. | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/102/Sitecore_Experience_Platform_10.2.2/Sitecore%2010.2.2%20rev.%20010645%20(zh-CN).zip) | Chinese language client translation file. See [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) on how to import a new language into the Sitecore installation. | - | [Chinese GeoIP Localization Pack](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/90/Sitecore%20Experience%20Platform%2090%20Initial%20Release/Secure/GeoIp%20Location%20China%20Localization%20Pack%201.0.0%20rev.%20180226.zip) | The pack provides enhanced region detection for China. The pack should be installed as a regular Sitecore module. | - -## Usage policies - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - - - - - Sitecore may collect information such as product version, number of site visits, generic hardware and software information, and recovery actions. This information will be used to help optimize your experience. All data will be processed in accordance with Sitecore’s privacy policy [here](https://www.sitecore.com/trust/privacy-policy). Should you have any queries or wish to discuss this, [please refer to our FAQ](https://kb.sitecore.net/articles/424335), or contact your Sitecore Account Manager. - diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103/Release_Notes.md deleted file mode 100644 index fde4a397c..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103/Release_Notes.md +++ /dev/null @@ -1,246 +0,0 @@ ---- -title: 'Release Notes' -description: '' -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103/Release_Notes ---- - -**December 2022 – released Sitecore Experience Platform 10.3.0 rev. 008463** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -- [Highlights](#highlights) -- [New features/improvements](#new-featuresimprovements) -- [Deprecated/Removed](#deprecatedremoved) -- [Known issues](#known-issues) -- [Resolved issues](#resolved-issues) - -## Highlights - -Sitecore Experience Platform (SXP) 10.3 delivers new capabilities and quality improvements that enable organizations to deliver unforgettable experiences with increased ease and convenience. - -Whether self-hosted, implemented in Sitecore Managed Cloud, or used as Experience Manager (XM) through Sitecore Experience Manager Cloud (XM Cloud), the 10.3 release improves how organizations extend and integrate the Sitecore Experience Platform with other applications in their marketing tech stack. New management and administration APIs and webhooks enable developers to take an API-first and industry-standard approach to customization, reducing the reliance on in-process custom code. This separation makes it easier for developers to upgrade to new versions of the Experience Platform in the future. - -Additionally, the introduction of Headless SXA, Headless Services 21.0, and enhancements to developer tools with 10.3 makes it easier for organizations to use SXP as a headless CMS, and to build engaging experiences using modern front-end frameworks. - -Other highlights include: - -- Headless SXA: Benefit from site scaffolding and templating, and new Next.js components, when building applications with XM as a headless CMS. -- ​​​​EXM enhancements: Added OAuth support for custom SMTP deployments. -- ​​​​​Headless Services 21.0: Includes the new starter framework to accelerate the creation of new projects, and support for Next.js 12.3.x and React 18. -- ​​​​​Management Services 5.0: Enhanced Experience Edge publishing, resolved default publishing target, and added support for single-item publishing. -- ​​Sitecore CLI 5.0: Added Linux support and new telemetry. -- System updates: Upgraded Identity Server and Publishing Service to support .NET 6, added support for Solr 8.11.2, and SQL Server Transparent Data Encryption (TDE) for encryption of data at rest. Support for Windows Server 2022 coming in January. - -## New features/improvements - -| Context | Description | ADO no. | -| ------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | -| Containers | Database prefix support can now be configured during deployment.​​ | 421400 | -| Containers | Log-level customization is now added for all Sitecore roles.​ | 427142 | -| Containers | Persistent storage is now used for a device detection database.​ | 487053 | -| Containers | The `ID` role is now based on the .NET 6.0 image​​​.​​ | 529430 | -| Containers | The Solr container has been updated to version 8.11.2.​​ | 545838 | -| Containers | Sitecore GraphQL settings has been added to the parameters.​ | 553271 | -| Email Experience Manager | OAuth support has been added for EXM Custom SMTP. ​ | 429737 | -| Experience Optimization | ​​To improve performance, an index is added to the `Fact_Personalization` table in the analytics database. | 454089 | -| Installation | ​​Sitecore Installation Assistant 1.5.0 supports Sitecore XP 10.3​.0​​​. | | -| List Manager | ​​You can now assign a user from an external identity service as the owner of a segmented list. | 502516 | -| Miscellaneous | ​Sitecore now supports MS SQL Transparent Data Encryption (TDE). With TDE enabled, data can be encrypted at rest to secure customer data and protect intellectual property. | | -| Platform | The `X-Content-Security-Policy` header has been removed from the `Content-Security-Policy` response.​​​​​ | 482758 | -| Platform | ​​The implementation of `TemplateFieldCacheKey` has been changed to reduce memory allocations. | 484186 | -| Platform | ​An API has been added that identifies every change that is made to the default items in Sitecore XP - `items in resources`. This helps you to safely upgrade your solution to a newer version.​ | 495854 | -| Platform | ​The performance of `Factory.GetSiteInfoList()` has been improved to avoid excessive memory allocation. | 505774 | -| Platform | ​​The performance of the `FilteredItemsCache` has been improved. | 505778 | -| Platform | ​​For jobs where the `job.Status.Processed` property is not set, the number of `units processed` is no longer logged. | 538296 | -| Platform | ​​​​​You can now receive real-time notifications about events or workflow actions by creating a webhook. You can also use a webhook to run external validation of the workflow state changes of an item. | 493334, 504626, 504714 | -| Platform | ​​To ensure that customers receive security updates promptly Sitecore has introduced `Sitecore Identity Server 7.0.0` based on .NET 6. | 531140, 516330 | -| Platform | ​​The new `clearroleswhensignin` setting for the identity provider determines whether the roles assigned to a user are managed in Sitecore or in an external identity provider. | 583085, 534067 | -| Sitecore.ContentSearch | ​​Searching by ID and path has been improved. | 474407 | -| Sitecore.ContentSearch | A warning is now logged when `FullRebuildItemCountThreshold` has been reached. ​​​​​ | 497050 | -| Sitecore.ContentSearch | `IHttpRequestInitializer` has been made public. This allows clients to modify request parameters for connections to Solr.​​ | 512890 | -| Sitecore.ContentSearch | ​The `initializeOnAdd` setting is now ignored in Solr search indexes. | 517923 | - -## Deprecated/Removed - -#### Horizon End-of-Support with SXP 10.3 - -Sitecore is discontinuing support for the Horizon visual page builder beginning with the SXP 10.3 release. If you are using Horizon, you should remain on 10.2, as an upgrade to 10.3 or later will cause you to lose access to Horizon. - -#### Removed features - -| Context | Description | ADO no. | -| -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | -| Platform | ​​​​​An unused `Microsoft.IdentityModel.Clients.ActiveDirectory` reference was removed. | 430895 | -| Platform | ​​​The `Developer Center` has been marked as obsolete and will be removed in a future version.
The `GridDesigner, IDE, RenderingLister, PageDesigner, Layouter, Imager`, and `PageScreenshots` that were previously marked as obsolete have been removed. | 540188 | - -## Known issues - -The following is a known issue: - -| Context | Description | ADO no. | -| ---------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | -| Media | ​​When a media blob is referenced by multiple duplicated media items, deleting one of these duplicated items will result in the deletion of the media blob. | 563054 - -## Resolved issues - -The following issues have been fixed: - -| Context | Description | ADO no. | -| ---------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | -| Containers | ​​The `mssql-init` and `solr-init` jobs fail to start in the `containerd` container runtime. | 524541 | -| Email Experience Manager | General UI improvements have been made. | 468918 | -| Email Experience Manager | If you set the value of `Analytics.ForwardedRequestHttpHeader` to `X-Forwarded-For`, the `EmailOpenedEvent` tracking logs an error. | 473430 | -| Email Experience Manager | If you add domains in EXM, there are no notifications about the new domains. | 485161 | -| Email Experience Manager | ​​The `Delete` button is not disabled after a campaign has been deleted. | 485314 | -| Email Experience Manager | If you specify a filter in Marketing Automation, the automated email campaign is not sent to the recipient list. | 490233 | -| Email Experience Manager | ​​The `Export` button for a suppression list is enabled even when there are no items in the list or Sitecore Delivery Cloud is not enabled. | 494592 | -| Email Experience Manager | ​Even when Sitecore Delivery Cloud is not enabled, an error message related to it is shown. | 494601 | -| Email Experience Manager | If you export a suppression list using a date range where the date in the `From` field is later than the date in the `To` field, no validation error is displayed.​​​​​ | 495802 | -| Experience Analytics | ​If you delete an item when xConnect is unavailable, an exception error is thrown. | 497506 | -| Experience Editor | ​If you change the date and time format in the `Region and Language Settings` dialog box, an incorrect format is displayed in the Experience Editor. | 51661 | -| Experience Editor | If you open the Personalization wizard after you have reset a shared layout, an error occurs. | 166528 | -| Experience Editor | The Experience Editor `Insert` button does not work correctly in EXM.​ | 234193 | -| Experience Editor | ​In the Experience Editor, if you replace compatible renderings, the `UniqueId` changes. | 361317 | -| Experience Editor | ​The performance of `Sitecore.ExperienceEditor.Speak.Ribbon.Requests.DatasourceUsages.GetDatasourceUsagesDropdown.ProcessRequest` is not optimized. | 406728 | -| Experience Editor | In the Experience Editor, if you click the `Edit Experience Editor Options` button or the `Add associated content` button, the page scrolls up. | 458264 | -| Experience Editor | The `enableWebEdit` parameter is always read from the `Preview.DefaultSite` value.​​​​​ | 489128 | -| Experience Editor | ​​In a multi-line text field, if you paste text that contains formatting, the HTML tags are not removed. | 500606 | -| Experience Editor | ​If `HtmlEditor.RemoveScripts=false` and the field type is removed from `Rendering.HtmlEncodedFieldTypes`, ​`FieldRenderer.Render()` returns an empty string. | 507001 | -| Experience Editor | ​An extra `
` tag is added at the end of a multi-line text field. | 509260 | -| Experience Editor | ​​In the Experience Editor, if you edit an empty `Rich Text` field, a JavaScript error occurs. | 509296 | -| Experience Editor | ​In the `Do you want to open the start Web page instead?` dialog, if you click the `Cancel` or `X` button, the `start Web page` opens in a new tab. | 511601 | -| Experience Editor | ​​​​​The fallback value of a field changes after another field has been saved with a new value. | 517115 | -| Experience Editor | ​​The HTML tags of a single-line text are removed when editing and saving other fields. | 520726 | -| Experience Editor | ​​​If you enter any HTML tags in a multi-line text field using a field editor dialog in Experience Editor, the HTML tags are removed. | 531146 | -| Experience Editor | ​​​​​​The `Insert Image` button in the `WebEdit` ribbon only works if the image has an `en` version. | 533388 | -| Experience Editor | If you set the `Date` field value to `5/23/2080` and use the `ar-sa` language, the page does not render the date field.​​ | 540755 | -| Experience Optimization | ​​​​​If you change the standard values item and apply personalization, the final rendering changes are not saved. | 457081 | -| Experience Optimization | ​​​​​If you select the `Enable variation of component design` check box, the setting does not persist and the selected component design renderings are reverted. | 460603 | -| Experience Optimization | If you run multiple tests for a single page, the historical tests list does not display all previous tests.​​ | 496833 | -| Experience Optimization | Items in draft state are published when creating a page test for an item.​​​​​ | 505988 | -| Experience Optimization | ​Disabling `Track effect of personalization on this component` does not work when more than one component is personalized. | 509251 | -| Experience Optimization | ​​​​​If you use a filter using a goal taxonomy facet rule, there is no rule fact resolver found for the `ISegmentationServiceContext`. | 516003 | -| Experience Optimization | ​​​​​Items in draft state are published when creating a version test for an item. | 527227 | -| Experience Optimization | ​​If you create an A/B page test between a parent and a child item, the items may not be completely published. | 530482 | -| Experience Optimization | ​​The Experience Optimization dashboard fails to load if there are empty experiences in the index. | 537304 | -| Experience Profile | ​In Firefox, if you open Experience Profile, the search box is rendered incorrectly. | 371711 | -| Federated Experience Manager | When you use Azure Request Routing, the FXM SCBeacon service uses an internal domain name instead of a public domain name. | 221942 | -| Federated Experience Manager | The FXM folder contains configuration files related to Azure Search. | 501534 | -| Headless Services | The Edge Preview and Edge delivery endpoints return an inconsistent order of child items.​ | 529047 | -| Headless Services | ​​​​​Publishing fails and throws an `ArgumentNullException` error due to `TemplateFieldDeliveryEntityGenerator`. | 534137 | -| List Manager | If a contact does not have a last name specified, `​{LastName}` is displayed.​​ | 324998 | -| List Manager | If you import a CSV of contacts, `ListManager` does not identify duplicate entries and creates multiple dedicated contacts. | 469483 | -| Marketing Automation | ​​​​​The `IContactRepository` is registered with an incorrect DI lifetime​. | 331761 | -| Marketing Automation | ​​​​​The delimiters in Marketing Automation reports are not rendered based on the user's culture. | 464103 | -| Marketing Automation | ​​A potential `ThreadPool` starvation issue has been resolved. | 504859 | -| Marketing Automation | If you start and stop a campaign in the previous month and open it in the next month, an error occurs when you select a start date.​​ | 515379 | -| Marketing Automation | ​​​​​The `ScheduledPlanEntryWorker` and `ActivityTimeoutWorker` classes can stop working unexpectedly. | 515456 | -| Marketing Automation | ​​​​​If you create an automation plan in multiple languages, a duplicate key error occurs in the `ActivityTimeoutWorker` class. | 525976 | -| Marketing Automation | ​​If you switch the pages in the `SelectPlanActivity` dialog, a `The data could not be loaded error` occurs. | 533272 | -| Marketing Automation | ​​The `Move to another campaign` activity does not prevent subsequent actions on the same path. | 535686 | -| Marketing Automation | ​​The `Move to another campaign` activity does not allow `Remove from Campaign` to be added to the flow. | 542482 | -| Marketing Foundation | ​​​​​The interaction and device profile ID reference to an incorrect contact after a known-to-known identification. | 470569 | -| Marketing Foundation | ​If you use Redis Session State Provider and set `AlloConcurrentRequestPerSession` to `true`, a `NullReferece` exception is thrown. | 505522 | -| Marketing Foundation | ​​​​Marketing definitions search indexes reference an obsolete computed index `UrlLink` field.​ | 521532 | -| Marketing Foundation | ​​Tolerance has been increased to handle transient faults when trying to access `Submit Queue`. | 531111 | -| Marketing Foundation | ​​The Redis session lock does not work as expected leading to inconsistent data. | 535277 | -| Miscellaneous | ​​Some security issues have been resolved. | 373821, 498938, 506984, 506986, 508237, 509802, 512209, 513368, 514144, 525885 | -| Miscellaneous | ​​​​​Localization has been improved. | 489199, 489394, 489680, 492791, 492793, 492795, 493348, 496745, 504663, 507540, 508987, 509455, 526858, 549833, 550452, 550453, 550454, 550942 | -| Path Analyzer | Custom goal maps do not display any data.​​​​​ | 501157 | -| Platform | ​In the `ValueLookupField` class, the ​`ValidateLinks` method slows down rebuilding the `LinkDatabase`. | 115854 | -| Platform | ​​​Too much information is serialized to the `EventQueue` for clone items. | 146631 | -| Platform | ​​​​​​The `encodeNameReplacements` rules break GUID-based media URLs. | 158936 | -| Platform | ​​​​​​Sitecore Query can be run every time the `Translate.Text(string)` method is invoked. | 178849 | -| Platform | When you try to delete or archive an item, a `Relink \| System.ArgumentNullException: Value cannot be null` error occurs. | 211195 | -| Platform | ​​If you set the `RequireLogin` attribute, it breaks the authentication logic of a front-end site. | 229436 | -| Platform | ​​​​​​The `Copy To` button on the `Final Layout` tab copies the rendering to the other item but does not show an updated list in the `Layout Details` dialog. | 287225 | -| Platform | ​​The `CleanupAgent` does not clean up log files created by `RollingFileAppender`. | 313137 | -| Platform | ​The `AddClonesToPublishQueue` method slows the locking and unlocking of an item if clones are widely used.​​​​​ | 329904 | -| Platform | ​​The `AddClonesToPublishQueue` method could make changing the workflow state of an item that has a lot of clones to be slow. | 331567 | -| Platform | ​​​The default `ScavengeStrategy.DoCleanup` method can clean up less than the value specified in `CacheScavengePercent`. | 384576 | -| Platform | ​If you delete an item that has a clone, a `Guid should contain 32 digits with 4 dashes…` error occurs.​​​​​ | 445206 | -| Platform | ​​​​​​If `ItemCloning.DeleteClonesWithOriginalItem` is `true`, the `PublishManager.DataEngine_DeletedItem` method can throw a `NullReferenceException`. | 450353 | -| Platform | ​​​​​If security is set to `null` on any item, ​a security rules parsing error occurs. | 461985 | -| Platform | ​​​​​If the `AllowDuplicateItemNamesOnSameLevel` setting is set to `false` and parallel publishing is enabled, the `​PublishAgent fails`. | 462837 | -| Platform | ​​​The `GetTargetItem()` method returns `null` for cross-database links. | 479550 | -| Platform | ​If you rename an item to its initial name, ​the `PathCache` is not cleared on a CD instance. | 493542 | -| Platform | ​​In the `Sitecore.Sites.config` file, if the `enforceVersionPresence` setting is set to `true`, an item may not be identified as a content item. | 494792 | -| Platform | ​​If you use a `.jiff` file with an incorrect MIME type, it is not displayed in Internet Explorer 11. | 494964 | -| Platform | ​​If the `previewUnpublishableItems` setting is set to `true`, you cannot ​preview unpublishable items. | 498395 | -| Platform | ​​​​​​The `PublishEndRemote EventArgs` do not determine the name of the context database. | 498865 | -| Platform | ​​​​​If you access `LayoutCache.GetCacheKeys()`, the entire concurrent dictionary gets locked. | 499061 | -| Platform | ​​Cache size recalculation slows down full cache clearing. | 499631 | -| Platform | ​​If an item does not have a parent item in the EN language and the `enforceVersionPresence` setting is set to `true` for all items, ​links to the item in the EN language are incorrect. | 499753 | -| Platform | ​​​​​​If changes in the context of the `StatisticDisabler` are made by `StatisticDisablerState.ForItemsWithoutVersionOnly`, they are not published incrementally. | 500567 | -| Platform | ​​​If you use OWIN and have a large number of web sites, application startup is interrupted by a `StackOverflowException`. | 500740 | -| Platform | ​​If you republish a blob, the `blobIDs` cache is not updated on the CD instance. | 503173 | -| Platform | ​​​​​If the `Caching.CacheKeyIndexingEnabled.ItemCache` setting is set to `true`, the ​Sitecore caches are not cleared on a CD instance. | 503828 | -| Platform | ​​The `__Standard Values` of the `Rendering` parameters are not read. | 505185 | -| Platform | ​​If you publish a clone item, the `FilteredItemsCache` is cleared for every sites. | 505342 | -| Platform | ​​​​​​​If you publish a clone item, the `ItemPathsCache` is partially cleared. | 505584 | -| Platform | ​​​​​​Unnecessary blocking occurs in `Logger.CallAppenders(LoggingEvent)`. | 506173 | -| Platform | If you run an incremental publishing from the Publish Agent, a number of unintended update jobs are executed.​​ | 507191 | -| Platform | ​​​There is a typo in `Sitecore.Sites.DefaultItemSiteResolver.CanResolve`. | 507668 | -| Platform | ​​​​​​If one language falls back to another language, a `StackOverflowException` occurs in `Sitecore.Globalization.Translate.Text()`. | 509668 | -| Platform | ​​The `Custom Properties` of a virtual user are not fetched from the database. | 510291 | -| Platform | ​​​​​​If you log in an external Sitecore site via an external identity provider, the `Sitecore` title appears on the browser tab. | 510418 | -| Platform | ​​​A 404 error for non-existent media files is still cached in `web[paths]` cache even after publishing. | 512303 | -| Platform | ​​​The `Sitecore.Diagnostics.Statistics` class is not thread-safe. | 512493 -| Platform | The behavior of the `Current.ContextItem` field was changed. Now it points to datasource item, if specified. | 517662 | -| Platform | ​Download filename becomes garbled when using non-ASCII characters. | 518999 | -| Platform | ​When entries are added to a cache, the cache size is calculated incorrectly. | 520870 | -| Platform | ​​`Sitecore.Collections.TemplateDictionary` is not thread-safe. | 526344 | -| Platform | ​​​If you rebuild the `Links` database, many records are duplicated multiple times. | 526584 | -| Platform | ​​​The `Customize My Toolbar` dialog does not use Client translations. | 526616 | -| Platform | ​​Exclude Robots does not work correctly with the IP ranges specified in IPv6. | 528926 | -| Platform | ​If you use the `where the current user is a member of the specific role` personalization condition, an ​`Application access denied` error occurs. | 528947 | -| Platform | ​​The publishing behavior for `items as resource` files is incorrect. | 529023 | -| Platform | ​​​​​​If you restore an item from resources, it can cause a `StackOverflowException`. | 529187 | -| Platform | ​​​​​​Reading the child items of `items as resource` is not thread-safe. | 530961 | -| Platform | ​​The `Custom Properties` of a virtual user are lost during `RuntimeSetting` serialization. | 531248 | -| Platform | ​If an item has a large number of language and numeric versions, the output of the `Gallery Links` form becomes unmanageable. | 531872 | -| Platform | If you change the client settings in the `identityServer.xml` file, users are not logged out. | 535578 | -| Platform | ​​​If you publish related items to one publishing target, it fails when another publishing target is unavailable due to an error in the `LinkDatabase`. | 535675 | -| Platform | ​​If a user has not been assigned any Sitecore roles and the Identity Server login page is disabled, a ​redirect loop occurs. | 536782 | -| Platform | ​​​​​​When Sitecore XP resolves a target site, it uses the site root path and the language but ignores the database. | 537827 | -| Platform | ​​​​​​References to items that have a large number of language and numeric versions degrade the performance of the `GalleryLinksForm` and the `Experience Editor`. | 542261 | -| Platform | ​​​​​​If a username contains a single quote, the `My Items` dialog throws a `ParseException` error. | 555436 | -| Platform | If you rename a `__Standard Values` item and have enabled language fallback, a ​`StackOverflowException` occurs.​​ | 118166, 187731 | -| Platform | ​​​Some security vulnerabilities have been fixed. | 390129, 363636, 500712, 513299, 525345, 92375, 539826, 492315, 390299, 459146, 504543, 533235, 525192, 531019, 548363, 539965 | -| Platform | ​​​​​​In the `Rich Text Editor`, if you use `Alt` codes, an extra unnecessary symbol is output. | 489654, 549048 | -| Platform | If the `​​​Publishing.CheckSecurity` setting is set to `true`, it does not work with external users. | 526576, 526577 | -| Publishing | The Content Availability - HTML cache is not cleared when a data source is updated.​​ | 508762 | -| Sitecore.ContentSearch | ​If ​`ContentDatabase` is `null` for a context site, `LinqHelper` throws an `NullReferenceException` error. | 186703 | -| Sitecore.ContentSearch | The `Name (Lookup) Value List` field containing IDs without braces is not indexed.​​ | 283431 | -| Sitecore.ContentSearch | ​​The unused `_url` and `_lastestversion` virtual fields cause performance issues. | 314849 | -| Sitecore.ContentSearch | ​​`Populate Solr Managed Schema` does not cover all default Sitecore languages. | 437509 | -| Sitecore.ContentSearch | ​Sitecore connects to the old SolrCloud server after a warm Disaster Recovery has been triggered. | 447307 | -| Sitecore.ContentSearch | ​​​​​The `indexing.getDependencies` pipeline causes an `InvalidOperationException` error after an item has been deleted. | 485321 | -| Sitecore.ContentSearch | ​​The `GetDataSourceItemByQuery` processor aborts the pipeline even if it could not process the data source. | 486907 | -| Sitecore.ContentSearch | ​​​​​`CultureExecutionContext` is lost if the index field name cannot be resolved from the configuration. | 487890 | -| Sitecore.ContentSearch | `SolrFieldNameTranslator` attempts to resolve an index field name based on a Virtual Field name. ​​ | 487891 | -| Sitecore.ContentSearch | ​The index properties are saved into the same database regardless of the database being crawled. | 497496 | -| Sitecore.ContentSearch | ​The `Location Finder` component does not work on items that do not have an English version. | 505615 | -| Sitecore.ContentSearch | ​​The `IEnumerable``` properties of a search result POCO remain unassigned. | 508786 | -| Sitecore.ContentSearch | PDFsharp media content extraction can omit delimiters between words or paragraphs.​​ | 509467 | -| Sitecore.ContentSearch | ​​The web index rebuild performance degrades after applying Hotfix 494627. | 520721 | -| Sitecore.ContentSearch | ​In `OperationsMonitor`, the number of queued actions is always zero. | 524509 | -| Sitecore.ContentSearch | The search operations are run in the context of a `sitecore\Anonymous` user instead of the actual user.​​​​​ | 529807 | -| Sitecore.ContentSearch | If the culture of a thread is set to `ar-SA`, the search result is not loaded because the date cannot be populated.​​ | 540756 | -| Sitecore Forms | ​​​If you change the value of a specific form item, the `Revision` field is changed in all form items. | 404956 | -| Sitecore Forms | ​​The hidden `File Upload` field is validated and does not redirect the request to the correct URL. | 483476 | -| Sitecore Forms | ​If you save a language version of a form and `languagefallback` is enabled, ​a `You cannot edit the 'the form' item because it is protected` error occurs. | 485274 | -| Sitecore Forms | ​​​In the Experience Editor, the form is not displayed until you click the `Save` button. | 485487 | -| Sitecore Forms | ​​If you add a form with two navigation buttons, the page source code of the form contains duplicated IDs. | 486154 | -| Sitecore Forms | ​Field validation can be bypassed by changing related inputs. | 490008 | -| Sitecore Forms | ​​The `Text` field is not decoded in list elements and displays an incorrect list name. | 491143 | -| Sitecore Forms | If you submit a form with an empty `File Upload` element, a `NullReferenceException` occurs.​​ | 491488 | -| Sitecore Forms | ​​Language-specific or special characters are not allowed in form labels. | 493648 | -| Sitecore Forms | The validation message for a required element is displayed after the form element has been disabled.​ | 500992 | -| Sitecore Forms | ​Searching a form with multiple keywords does not work. | 503212 | -| Sitecore Forms | ​​A reference to the core databases breaks the indexing on CD instances. | 510810 | -| Sitecore Forms | If you submit a multi-page form after the session has expired, an unexpected `Redirected to Page submit` action is executed.​​ | 513277 | -| Sitecore Forms | The `Form data entries deleted successfully` message is displayed incorrectly when a form data entry deletion has failed.​​ | 513372 | -| Sitecore Forms | ​​The radio button list labels behave incorrectly in multi-language forms. | 513382 | -| Sitecore Forms | ​​If you save a form with a Text field tag set to `span`, a `The form was not saved` error occurs. | 525169 | -| Sitecore Forms | ​Test cases do not account for time zone differences of agents. | 558874 | diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103/index.md deleted file mode 100644 index 245bad9d4..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103/index.md +++ /dev/null @@ -1,136 +0,0 @@ ---- -title: "Sitecore Experience Platform 10.3" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103.aspx ---- - -Sitecore Experience Platform 10.3 delivers new capabilities and quality improvements that enable organizations to deliver unforgettable experiences with increased ease and convenience.  - -Whether self-hosted, implemented in Sitecore Managed Cloud, or used as Experience Manager (XM) through Sitecore Experience Manager Cloud (XM Cloud), the 10.3 release improves how organizations extend and integrate the Sitecore Experience Platform (SXP) with other applications in their marketing tech stack. New management and administration APIs and webhooks enable developers to take an API-first and industry-standard approach to customization, reducing the reliance on in-process custom code. This separation of concerns makes it easier for developers to upgrade to new versions of the Experience Platform in the future. - -Additionally, the introduction of Headless SXA, Headless Services 21.0, and enhancements to developer tools with 10.3 makes it easier for organizations to use SXP as a headless CMS, and to build engaging experiences using modern front-end frameworks.  - -Other highlights include: - -- Headless SXA: Benefit from site scaffolding and templating, and new Next.js components, when building applications with XM as a headless CMS. -   -- EXM enhancements: Added OAuth support for custom SMTP deployments. -   -- Headless Services 21.0: Includes the new starter framework to accelerate the creation of new projects, and support for Next.js 12.3.x and React 18. -   -- Management Services 5.0: Enhanced Experience Edge publishing, resolved default publishing target, added support for single-item publishing. -   -- Sitecore CLI 5.0: Added Linux support, new telemetry, and XM Cloud support. -   -- System updates: Upgraded Identity Server and Publishing Service to support .NET 6, added support for Solr 8.11.2, and Windows Server 2022. - -See [all available versions here](/downloads/Sitecore_Experience_Platform). - -## Download options for Sitecore Container deployments - - | Resource | Description | - | --- | --- | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sxp%2F10.3.0.008463.1229) | The Sitecore Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore in development and production container environments. | - | [Installation Guide for Developer Workstation with Containers](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/Sitecore_XP_10_3_0_Developer_Workstation_Deployment_With_Docker-en.pdf) | This guide describes how to use Sitecore Containers with Docker Compose to deploy a developer workstation. | - | [Installation Guide for Production Environment with Kubernetes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/SC-XP-10.3.0-Production_Deployment_With_Kubernetes-en.pdf) | This guide describes how to use Sitecore Containers with Kubernetes to deploy containers to the Azure Kubernetes Service. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - | [Upgrade Container Deployment Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/SC-XP-10.3.0-Upgrade_Container_Deployment_Guide-en.pdf) | Explains how to use the Sitecore Container Deployment Package to upgrade the SQL Server databases of an existing Sitecore XP 10.0.X installation to Sitecore XP 10.3.0. | - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Installation Framework](/downloads/Sitecore_Installation_Framework/2x/Sitecore_Installation_Framework_230) | Follow this link to download the Sitecore Installation Framework (SIF) PowerShell module. Please refer to the Sitecore Experience Platform installation guide for further information on how to install Sitecore with SIF. | - | [Scripts for Sitecore Security database](/downloads/Scripts_for_Sitecore_Security_database) | The package contains the set of scripts for moving Sitecore Security membership provider from the Core database to individual or existing one. | - | [Sitecore Remote Distributed Deployment SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Sitecore%20remote%20distributed%20installation%20templates.zip) | The package contains Sitecore Install Framework deployment templates that can be used to deploy Sitecore Experience Platform remotely to a scalable distributed server cluster from a single workstation or server. | - -## Download options for On Premises deployment - - | Resource | Description | - | --- | --- | - | [Graphical setup package for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/WDP/Sitecore%2010.3.0%20rev.%20008463%20(Setup%20XP0%20Developer%20Workstation%20rev.%201.5.0-r11).zip) | The Sitecore Install Assistant's user interface guides you through the Sitecore XP Developer Workstation (XP Single) installation. Use it to review system requirements, install prerequisites, and complete the entire installation process. | - | [Graphical setup package for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/WDP/Sitecore%2010.3.0%20rev.%20008463%20(Setup%20XM1%20Developer%20Workstation%20rev.%201.5.0-r11).zip) | The Sitecore Install Assistant's user interface guides you through the Sitecore XM Developer Workstation (XM Scaled) installation. Use it to review system requirements, install prerequisites, and complete the entire installation process. | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/WDP/Sitecore%2010.3.0%20rev.%20008463%20(WDP%20XP0%20packages).zip) | Packages for XP Single (XP0) Instance configuration. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/WDP/Sitecore%2010.3.0%20rev.%20008463%20(WDP%20XP1%20packages).zip) | Individual packages for each of the dedicated XP Scaled (XP1) roles. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/WDP/Sitecore%2010.3.0%20rev.%20008463%20(WDP%20XM1%20packages).zip) | Individual packages for each of the dedicated XM Scaled (XM1) roles. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/WDP/Sitecore%2010.3.0%20rev.%20008463%20(WDP%20XPSingle%20packages).zip) | Packages for XP Single (XP0) Instance configuration. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/WDP/Sitecore%2010.3.0%20rev.%20008463%20(WDP%20XPScaled%20packages).zip) | Individual packages for each of the dedicated XP Scaled (XP1) roles. | - | [Packages for XM Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/WDP/Sitecore%2010.3.0%20rev.%20008463%20(WDP%20XMSingle%20packages).zip) | Packages for XM Single (XM0) Instance configuration. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/WDP/Sitecore%2010.3.0%20rev.%20008463%20(WDP%20XMScaled%20packages).zip) | Individual packages for each of the dedicated XM Scaled (XM1) roles. | - | [Sitecore Azure Toolkit Resources](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/Sitecore%20Azure%20Toolkit%20Resources%2010.3.0%20rev.%20008463.zip) | Sitecore Azure Toolkit Resources package. | - -## Download options for Content Delivery Network CDN - - | Resource | Description | - | --- | --- | - | [Package for XM Scaled and XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Sitecore.Content.Delivery.Network.Provider.1.0.0-r00010.scwdp.zip) | CDN package for both XM Scaled and XP Scaled Content Delivery (CD) role. | - -## Download options for Blob Storage - - | Resource | Description | - | --- | --- | - | [Package for XM and XP](/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_501) | Blob Storage Package for XM Scaled, XP Scaled, XM Developer, XP Developer. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known issues](https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fsupport.sitecore.com%2Fkb%3Fid%3Dkb_search%26kb_knowledge_base%3D3492d025db70dc109e54320a6896199f%26spa%3D1%26u_sxp_affected_versions%3Def85f7161b6b9d50722d4042b24bcbbd%26language%3Den&data=05%7C01%7Cjonas.christensen%40sitecore.com%7Cbddc1bdf999b41b6b23508dad76bee27%7C91700184c3144dc9bb7ea411df456a1e%7C0%7C0%7C638059155799746258%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=RKzA08xW%2BlzUEB62%2FvRvRZlKUct%2BLW8u5uOpu12DYDA%3D&reserved=0) | Choose this link to access the Sitecore Knowledge Base. | - | [Sitecore Installation Framework (SIF) Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/SC_Installation_Framework_2_3_0_Configuration_Guide_for_SC-XP-10.3.0-en.pdf) | Explains how to use the SIF Microsoft PowerShell module to deploy and configure a Sitecore topology. | - | [Installation Guide for the XM Scaled topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/SC-XP-10.3.0-Install-Guide-XM-Scaled-Topopoly-en.pdf) | Explains how to install the Sitecore Experience Management (XM1) topology to run the Content Delivery (CD) and Content Management (CM) server roles, and the Sitecore Identity server. This topology does not support xDB and xConnect. | - | [Installation Guide for the XP Scaled topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/SC-XP-10.3.0-Install-Guide-XP-Scaled-Topology-en.pdf) | Explains how to install the fully featured Sitecore Experience Platform Installation (XP1) topology. This topology can be configured to run separated server roles. | - | [Quick Installation Guide for a Developer Workstation](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/SC-XP-10.3.0-Quick_Install_Guide_Developer_Workstation-en.pdf) | Explains how to install the XP Single (XP0) topology on a workstation for development and testing purposes. | - | [Upgrade Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/SC-XP-10.3.0-Upgrade%20Guide-en.pdf) | Explains how to directly upgrade from Sitecore XP 8.1.0 or later to Sitecore XP 10.3.0. | - | [Developer Documentation](https://doc.sitecore.com/xp/en/developers) | Link to Sitecore developer documentation. | - | [Assembly list](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/Sitecore.Platform.Assemblies%2010.3.0%20rev.%20008463.zip) | Complete list of assemblies shipped with this release. | - -## Modules - - | Resource | Description | - | --- | --- | - | [Sitecore CLI](/downloads/Sitecore_CLI/5x/Sitecore_CLI_5125) | Download files and release information for latest compatible version of Sitecore CLI. | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales](/downloads/Dynamics_CRM_Connect/8x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_800) | Download files and release information for latest compatible version of Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Sitecore Connect for Salesforce CRM](/downloads/Salesforce_Connect/8x/Sitecore_Connect_for_Salesforce_CRM_800) | Download files and release information for latest compatible version of Sitecore Connect™ for Salesforce CRM. | - | [Sitecore Connect for Salesforce Marketing Cloud](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80) | Download files and release information for latest compatible version of Sitecore Connect™ for Salesforce Marketing Cloud. | - | [Sitecore Connect for Content Hub](/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_510) | Download files and release information for latest compatible version of Sitecore Connect for Content Hub. | - | [Sitecore Data Exchange Framework](/downloads/Data_Exchange_Framework/8x/Data_Exchange_Framework_800) | Download files and release information for latest compatible version of Sitecore Data Exchange Framework. | - | [Sitecore Experience Accelerator](/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1030) | Download files and release information for latest compatible version of Sitecore Experience Accelerator. | - | [Sitecore Headless Rendering](/downloads/Sitecore_Headless_Rendering/21x/Sitecore_Headless_Rendering_2100) | Download files and release information for latest compatible version of Sitecore Headless Rendering. | - | [Sitecore Identity](/downloads/Sitecore_Identity/7x/Sitecore_Identity_70325) | Download files and release information for latest compatible version of Sitecore Identity. | - | [Sitecore Publishing Service Module](/downloads/Sitecore_Publishing_Service_Module/10x/Sitecore_Publishing_Service_Module_1030) | Download files and release information for latest compatible version of Sitecore Publishing Service Module. | - -## Upgrade options - - | Resource | Description | - | --- | --- | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/Sitecore%2010.3.0%20rev.%20008463%20(upgrade%20files).zip) | This package contains configuration files and database scripts for the upgrade. | - | [Sitecore UpdateApp Tool](/downloads/Sitecore_UpdateApp_Tool/1x/Sitecore_UpdateApp_Tool_131) | Updates the Core, Master, and Web databases. | - | [Resource files for Modules](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Module resource files for upgrading Core, Master and Web. | - -## Client translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/Translations/Sitecore%2010.3.0%20rev.%20008463%20(da-DK).zip) | Danish language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/Translations/Sitecore%2010.3.0%20rev.%20008463%20(de-DE).zip) | German language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/Translations/Sitecore%2010.3.0%20rev.%20008463%20(ja-JP).zip) | Japanese language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/Translations/Sitecore%2010.3.0%20rev.%20008463%20(zh-CN).zip) | Chinese language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Chinese GeoIP Localization Pack](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/90/Sitecore%20Experience%20Platform%2090%20Initial%20Release/Secure/GeoIp%20Location%20China%20Localization%20Pack%201.0.0%20rev.%20180226.zip) | The pack provides enhanced region detection for China. The pack should be installed as a regular Sitecore module. | - -## Usage policies - - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - - - - Please note that as part of your system upgrade to Sitecore Version 10.3, Sitecore may collect additional information such as product version, number of site visits, generic hardware and software information, and recovery actions. This information will be used to help us to optimize your experience. All data will be processed in accordance with Sitecore’s privacy policy [here](https://www.sitecore.com/trust/privacy-policy). Should you have any queries or wish to discuss this, [please refer to our FAQ](https://kb.sitecore.net/articles/424335), or contact your Sitecore Account Manager. - diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103_Update1/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103_Update1/Release_Notes.md deleted file mode 100644 index ce3289460..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103_Update1/Release_Notes.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: 'Release Notes' -description: '' -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103_Update1/Release_Notes ---- - -**August 2023 – released Sitecore Experience Platform 10.3.1 rev. 009452** - -This is a product update. Sitecore recommends that you upgrade to this release to apply the fixes and improvements implemented since the initial release of this product version. - -- [New features/improvements](#new-featuresimprovements) -- [Known issues](#known-issues) -- [Resolved issues](#resolved-issues) - -## New features/improvements - -| Context | Description | ADO no. | -| ------------ | ------------------------------------------------------------------------- | ------- | -| Containers | The Traefik container image has been updated from version 2.5.3 to 2.9.8. | 575660 | -| Installation | Sitecore Installation Assistant 1.5.1 supports Sitecore XP 10.3.1. | 583106 | - -## Known issues - -The following is a known issue: - -| Context | Description | ADO no. | -| ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------- | -| Media | When a media blob is referenced by multiple duplicated media items, deleting one of these duplicated items will result in the deletion of the media blob. | 563054 -## Resolved issues - -The following issues have been fixed: - -| Context | Description | ADO no. | -| ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------- | -| Content Editor | An intermittent error causes the ribbon in the Content Editor to collapse for a virtual user, for example, after several publishing operations. | 554564 | -| Content Testing | In Mozilla Firefox, the test item does not move to the next workflow state when using the `Approve with test` option. | 575842 | -| Email Experience Manager | The status of an email campaign job from a first CM instance is not correctly synchronized with EXM in a second CM instance. | 575839 | -| Email Experience Manager | When selecting the `Edit the related item` context menu button, the embedded Content Editor does not appear as expected. | 587814 | -| Forms | Unexpected behavior with multi-page forms on submit when the session is expired. | 513277 | -| Installation | The installation of Sitecore XP using SIF fails due to the retired WebPI 5.1 installer. See [KB1003017](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1003017). | 575565 | -| Installation | The installation of Sitecore XP fails on a machine with SQL Server PowerShell Module version 22.0.xx or later. See [KB1003015](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1003015). | 580538 | -| Platform | Cross-site links are incorrect when sites have the same `rootPath`. | 565698 | -| Platform | When publishing site definitions for multiple managed websites, the `StartItem` setting is ignored when resolving the sites, causing a site to have an incorrect URL. | 569444 | -| Platform | A `TreeList` field unexpectedly translates the selected item name when the item's `DisplayName` exists in the Core DB dictionary. | 579558 | -| Publishing | Inefficient ID parsing can cause slow publising performance. | 585529 | -| Security | Potential security vulnerabilities have been resolved. See [KB1002925](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1002925), [KB1003018](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1003018). | 563856, 568150, 576660, 582720, 584731, 586117 | diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103_Update1/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103_Update1/index.md deleted file mode 100644 index 7a26f0bed..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103_Update1/index.md +++ /dev/null @@ -1,118 +0,0 @@ ---- -title: "Sitecore Experience Platform 10.3 Update-1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103_Update1.aspx ---- - -Update-1 to Sitecore Experience Platform 10.3. - -See [all available versions here](/downloads/Sitecore_Experience_Platform). - -## Download options for Sitecore Container deployments - - | Resource | Description | - | --- | --- | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/10.3.1.009452.1563) | The Sitecore Container Deployment Package contains the Docker Compose and Kubernetes specification files used to deploy Sitecore in development and production container environments. | - | [Installation Guide for Developer Workstation with Containers](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/Sitecore_XP_10_3_1_Developer_Workstation_Deployment_With_Docker.pdf) | This guide describes how to use Sitecore Containers with Docker Compose to deploy a developer workstation. | - | [Installation Guide for Production Environment with Kubernetes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/Sitecore_XP_10_3_1_Production_Deployment_With_Kubernetes.pdf) | This guide describes how to use Sitecore Containers with Kubernetes to deploy containers to the Azure Kubernetes Service. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on Sitecore Container Registry (SCR). | - | [Upgrade Container Deployment Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/SC-XP-10.3.1-Upgrade_Container_Deployment_Guide-en.pdf) | Explains how to use the Sitecore Container Deployment Package to upgrade the SQL Server databases of an existing Sitecore XP 10.0.X installation to Sitecore XP 10.3.1. | - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore Installation Framework](/downloads/Sitecore_Installation_Framework/2x/Sitecore_Installation_Framework_230) | Follow this link to download the Sitecore Installation Framework (SIF) PowerShell module. Please refer to the Sitecore Experience Platform installation guide for further information on how to install Sitecore with SIF. | - | [Scripts for Sitecore Security database](/downloads/Scripts_for_Sitecore_Security_database) | The package contains the set of scripts for moving Sitecore Security membership provider from the Core database to individual or existing one. | - | [Sitecore Remote Distributed Deployment SIF Templates](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Sitecore%20remote%20distributed%20installation%20templates.zip) | The package contains Sitecore Install Framework deployment templates that can be used to deploy Sitecore Experience Platform remotely to a scalable distributed server cluster from a single workstation or server. | - -## Download options for On Premises deployment - - | Resource | Description | - | --- | --- | - | [Graphical setup package for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/Sitecore%2010.3.1%20rev.%20009452%20(Setup%20XP0%20Developer%20Workstation%20rev.%201.5.1-r2).zip) | The Sitecore Install Assistant's user interface guides you through the Sitecore XP Developer Workstation (XP Single) installation. Use it to review system requirements, install prerequisites, and complete the entire installation process. | - | [Graphical setup package for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/Sitecore%2010.3.1%20rev.%20009452%20(Setup%20XM1%20Developer%20Workstation%20rev.%201.5.1-r2).zip) | The Sitecore Install Assistant's user interface guides you through the Sitecore XM Developer Workstation (XM Scaled) installation. Use it to review system requirements, install prerequisites, and complete the entire installation process. | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/Sitecore%2010.3.1%20rev.%20009452%20(WDP%20XP0%20packages).zip) | Packages for XP Single (XP0) Instance configuration. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/Sitecore%2010.3.1%20rev.%20009452%20(WDP%20XP1%20packages).zip) | Individual packages for each of the dedicated XP Scaled (XP1) roles. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/Sitecore%2010.3.1%20rev.%20009452%20(WDP%20XM1%20packages).zip) | Individual packages for each of the dedicated XM Scaled (XM1) roles. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/Sitecore%2010.3.1%20rev.%20009452%20(WDP%20XPSingle%20packages).zip) | Packages for XP Single (XP0) Instance configuration. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/Sitecore%2010.3.1%20rev.%20009452%20(WDP%20XPScaled%20packages).zip) | Individual packages for each of the dedicated XP Scaled (XP1) roles. | - | [Packages for XM Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/Sitecore%2010.3.1%20rev.%20009452%20(WDP%20XMSingle%20packages).zip) | Packages for XM Single (XM0) Instance configuration. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/Sitecore%2010.3.1%20rev.%20009452%20(WDP%20XMScaled%20packages).zip) | Individual packages for each of the dedicated XM Scaled (XM1) roles. | - | [Sitecore Azure Toolkit Resources](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/Sitecore%20Azure%20Toolkit%20Resources%2010.3.1%20rev.%20009452.zip) | Sitecore Azure Toolkit Resources package. | - -## Download options for Content Delivery Network CDN - - | Resource | Description | - | --- | --- | - | [Package for XM Scaled and XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/91/Sitecore%20Experience%20Platform%2091%20Initial%20Release/Secure/Sitecore.Content.Delivery.Network.Provider.1.0.0-r00010.scwdp.zip) | CDN package for both XM Scaled and XP Scaled Content Delivery (CD) role. | - -## Download options for Blob Storage - - | Resource | Description | - | --- | --- | - | [Package for XM and XP](/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_501) | Blob Storage Package for XM Scaled, XP Scaled, XM Developer, XP Developer. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103_Update1/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known issues](https://support.sitecore.com/kb?id=kb_search&kb_knowledge_base=3492d025db70dc109e54320a6896199f&spa=1&u_sxp_affected_versions=98d415871bd8f190efd0ec22604bcb41&language=en&u_affected_software=sitecore_experience_platform) | Link to known issues on the Sitecore Knowledge Base, filtered on SXP 10.3.0 (Initial Release). At time of release there are no known issues specific to SXP 10.3 Update-1. | - | [Sitecore Installation Framework (SIF) Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103/Secure/SC_Installation_Framework_2_3_0_Configuration_Guide_for_SC-XP-10.3.0-en.pdf) | Explains how to use the SIF Microsoft PowerShell module to deploy and configure a Sitecore topology. | - | [Installation Guide for the XM Scaled topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/SC-XP-10.3.1-Installation-Guide-XM-Scaled-Topology-en.pdf) | Explains how to install the Sitecore Experience Management (XM1) topology to run the Content Delivery (CD) and Content Management (CM) server roles, and the Sitecore Identity server. This topology does not support xDB and xConnect. | - | [Installation Guide for the XP Scaled topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/SC-XP-10.3.1-Installation-Guide-XP-Scaled-Topology-en.pdf) | Explains how to install the fully featured Sitecore Experience Platform Installation (XP1) topology. This topology can be configured to run separated server roles. | - | [Quick Installation Guide for a Developer Workstation](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/SC-XP-10.3.1-Quick_Install_Guide_Developer_Workstation-en.pdf) | Explains how to install the XP Single (XP0) topology on a workstation for development and testing purposes. | - | [Update Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/SC-XP-10.3.1-Update_Installation_Guide-en_v2.pdf) | Explains how to update to the latest release in the Sitecore 10.3.X series. | - | [Developer Documentation](https://doc.sitecore.com/xp/en/developers) | Link to Sitecore developer documentation. | - | [Assembly list](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/Sitecore.Platform.Assemblies%2010.3.1%20rev.%20009452.zip) | Complete list of assemblies shipped with this release. | - -## Modules - - | Resource | Description | - | --- | --- | - | [Sitecore CLI](/downloads/Sitecore_CLI/5x/Sitecore_CLI_52113) | Download files and release information for latest compatible version of Sitecore CLI. | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales](/downloads/Dynamics_CRM_Connect/8x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_800) | Download files and release information for latest compatible version of Sitecore Connect™ for Microsoft Dynamics 365 for Sales. | - | [Sitecore Connect for Salesforce CRM](/downloads/Salesforce_Connect/8x/Sitecore_Connect_for_Salesforce_CRM_800) | Download files and release information for latest compatible version of Sitecore Connect™ for Salesforce CRM. | - | [Sitecore Connect for Salesforce Marketing Cloud](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80) | Download files and release information for latest compatible version of Sitecore Connect™ for Salesforce Marketing Cloud. | - | [Sitecore Connect for Content Hub](/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_510) | Download files and release information for latest compatible version of Sitecore Connect™ for Content Hub. | - | [Sitecore Data Exchange Framework](/downloads/Data_Exchange_Framework/8x/Data_Exchange_Framework_800) | Download files and release information for latest compatible version of Sitecore Data Exchange Framework. | - | [Sitecore Experience Accelerator](/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1030) | Download files and release information for latest compatible version of Sitecore Experience Accelerator. To ensure compatibility with the latest Sitecore XP 10.3.x update release, also install the latest cumulative hotfix for SXA 10.3.0. See KB1002845.  | - | [Sitecore Headless Rendering](/downloads/Sitecore_Headless_Rendering/21x/Sitecore_Headless_Rendering_2101) | Download files and release information for latest compatible version of Sitecore Headless Rendering. | - | [Sitecore Horizon](/downloads/Sitecore_Horizon/100/Sitecore_Horizon_1020) | Sitecore Horizon is the next generation Experience Management product for the Sitecore Experience Platform™. | - | [Sitecore Identity](/downloads/Sitecore_Identity/7x/Sitecore_Identity_70327) | Download files and release information for latest compatible version of Sitecore Identity. | - | [Sitecore Publishing Service Module](/downloads/Sitecore_Publishing_Service_Module/10x/Sitecore_Publishing_Service_Module_1030) | Download files and release information for latest compatible version of Sitecore Publishing Service Module. | - -## Upgrade options - - | Resource | Description | - | --- | --- | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/Sitecore%2010.3.1%20rev.%20009452%20(upgrade%20files).zip) | This package contains configuration files and database scripts for the upgrade. | - | [Sitecore UpdateApp Tool](/downloads/Sitecore_UpdateApp_Tool/1x/Sitecore_UpdateApp_Tool_131) | Updates the Core, Master, and Web databases. | - -## Client translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/Translations/Sitecore%2010.3.1%20rev.%20009452%20(da-DK).zip) | Danish language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/Translations/Sitecore%2010.3.1%20rev.%20009452%20(de-DE).zip) | German language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/Translations/Sitecore%2010.3.1%20rev.%20009452%20(ja-JP).zip) | Japanese language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore%20Experience%20Platform%20103%20Update1/Secure/Translations/Sitecore%2010.3.1%20rev.%20009452%20(zh-CN).zip) | Chinese language client translation file. Read [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) how to import a new language into the Sitecore installation. | - | [Chinese GeoIP Localization Pack](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/90/Sitecore%20Experience%20Platform%2090%20Initial%20Release/Secure/GeoIp%20Location%20China%20Localization%20Pack%201.0.0%20rev.%20180226.zip) | The pack provides enhanced region detection for China. The pack should be installed as a regular Sitecore module. | - -## Usage policies - - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - - - - Please note that as part of your system upgrade to Sitecore Version 10.3, Sitecore may collect additional information such as product version, number of site visits, generic hardware and software information, and recovery actions. This information will be used to help us to optimize your experience. All data will be processed in accordance with Sitecore’s privacy policy [here](https://www.sitecore.com/trust/privacy-policy). Should you have any queries or wish to discuss this, [please refer to our FAQ](https://kb.sitecore.net/articles/424335), or contact your Sitecore Account Manager. - \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103_Update2/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103_Update2/Release_Notes.md deleted file mode 100644 index ed09cc1c8..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103_Update2/Release_Notes.md +++ /dev/null @@ -1,79 +0,0 @@ ---- -title: 'Release notes' -description: '' ---- - -**August 2024 – released Sitecore Experience Platform 10.3.2 rev. 010837** - -This is a product update. Sitecore recommends that you upgrade to this release to apply the fixes and improvements implemented since the initial release of this product version. - -- [New features/improvements](#new-featuresimprovements) -- [Resolved issues](#resolved-issues) -- [Dependency](#dependency) - -## New features/improvements - | Context | Description | ADO no. | - | --- | --- | --- | - | Deployment | Set SQL 2019 as the default SQL Server version for SXP 10.3 Container deployments. | 616859 | - | Deployment | Updated the Sitecore Installation Assistant to version 1.5.2, as part of supporting the SXP 10.3.2 Update release. This tool is available on the SXP 10.3.2 Downloads page; see *Installation Assistant for XM Scaled* and *Installation Assistant for XP Single*. | N/A | - | Security | Enhanced security in product and 3rd party libraries to reduce potential vulnerabilities. | 483800, 588637, 590395, 606641, 609758, 617299 | - -## Resolved issues - | Context | Description | ADO no. | - | --- | --- | --- | - | Experience Editor | After adding text in a multi-line text field, paragraph *p* tags display in a single line instead of displaying text in multiple lines. | 398289 | - | Experience Editor | Simultaneous launch of Experience Editor in two browsers after restarting Sitecore instance can cause a crash in one of them. | 412499 | - | Experience Editor | Duplicate renderings occur in the Experience Editor, add rendering dialog. | 573497 | - | Experience Editor | The Experience Editor *Go* button incorrectly resolves the site. | 596216 | - | Experience Editor | Publishing a new form, where the variable *Is Ajax* is unselected, results in the language being removed from the URL of the published form. | 600934 | - | Experience Editor | No audit log is recorded when and item is locked/unlocked in the Experience Editor. | 601330 | - | Experience Editor | No audit logs are added after creating a new item from the Experience Editor. | 601870 | - | Media | Media uploaded with *Overwrite existing media items* and *Make uploaded media items versionable* does not correctly clear Shared fields. | 558081 | - | Media | A copied or duplicated media blob gets deleted from the database if one of the copied/duplicated item is deleted. | 563054 | - | Media | After replacing an image source in the Media Library, the former image is still displayed in the Rich Text Editor field. | 607329 | - | Publishing | When publishing to Edge, multiple *Cache created* messages are displayed, one for each item rendered on the site. | 598796 | - | Forms | *Your Changes have not been applied* dialog appears in a Form's *Email* field, even when no change has been entered in the field, when applying non-English languages. | 585622 | - | Forms | The Forms database experiences a communication error with a *Timeout expired* error message. | 592211 | - | Forms | Upon saving a form with files from filestorage results in a *Unable to access a closed stream" error. | 603638 | - | Search | Unable to use Solr soft commits. | 97020 | - | Search | Value of the `Search.ContentTreeSearch.MaxResults` setting is ignored. | 515248 | - | Search | The original Solr approach for deleting documents from a Solr core, delete by Id, was incorrectly removed and replaced with delete by query. | 561884 | - | Search | Upon cloning an item, its standard value tokens do not present the actual field value in the fallback language version. | 573972 | - | Search | Unable to re-use `IQueryable` for concurrent search query executions. | 576428 | - | Search | The Search API may return incorrect results when executed under heavy system loads. | 578068 | - | Search | The date range virtual field is not resolved to the Solr field during search. | 596145 | - | Search | Increased CPU consumption when mapping Solr document fields to POCO class properties. | 603381 | - | Experience Database | `SC_ANALYTICS_GLOBAL_COOKIE` continues to remain active even after the site visotor has revoked permission for the site to collect cookies. | 589304 | - | Experience Apps - Content Testing | The LeaderBoard is empty when choosing it from the *Reports* | 597461 | - | Email Experience Manager | The link from EXM to the intended item in the Content Editor gets corrupted if the item display name contains Danish characters, for example: å æ ø. | 366194 | - | Email Experience Manager | Email campaign description does not support special characters. | 604409 | - | Email Experience Manager | Changing ChilkatDotNet48 to v9.5.0.93 or later blocks sending emails from EXM. | 613745 | - | Logging | No audit log record is added when user logs in to Sitecore. | 602417 | - | Logging | No detailed audit logs are added when item is unlocked via *My Items > Unlock* and *My Items > Unlock All*. | 603209 | - | Logging | Sitecore log messages are not generated upon making configuration changes, with the file appender type set to `RollingFileAppender`. | 609660 | - | Logging | For Containers deployments, health checks can incorrectly report status as healthy; in `healthcheck.ps1` *ServiceMonitor* was previously replaced by *LogMonitor*, but some *ServiceMonitor* code remains that can cause the issue. | 616751 | - | Deployment | When using a container the user gets redirected to an instance, because a port number gets included in the URL. | 602502 | - | Deployment | Device Detection fails in Containers deployments because C++ runtime is not installed in the XM1 topology. | 613337 | - | Deployment | The input is not a valid base-64 string because it contains a non-base 64 character error during package installation. | 614709 | - | Performance | Increased resource consumption for indexed caches with millions of entries. | 589212 | - | Performance | A .pdf file is opened for modification when its content is being read for indexing, which causes degraded performance; it should be opened in read-only mode for indexing. | 591674 | - | Performance | Slower MVC rendering can occur in environments with many sites, because `disableBrowserCaching` is ignored. | 610854 | - | Performance | A degradation in performance may occur when resolving *Standard Values* token value for a fallback version of a cloned item. | 614821 | - | Performance | `Sitecore.Caching.RenderingParametersCache` subscribes to some events without checking if it was already subscribed at creation time, which causes an incorrect behavior in LinkManager and performance degradation.. | 615496 | - | Performance | Increased lock contention when writing log messages during web requests. | 615909 | - | Platform | Content item link generation using display names containing special characters does not work correctly. | 577905 | - | Platform | Heavy usage of the `LinkDatabase` may lead to a *System.OutOfMemoryException* error. | 590416 | - | Platform | DateTime fields are rendered in UTC time instead of server time. | 591676 | - | Platform | A *System.AccessViolationException* error related to the DeviceDetection database can cause the website to crash. | 593927 | - | Platform | Validation on a multilist field does not get reflected immediately when the condition is met | 600651 | - | Platform | After adding a version to an item, the audit log captures the wrong version number. | 601454 | - | Platform | The item fallback version provided in the processor argument is not respected. | 609020 | - | Platform | If the URL contains spaces added before the item name, items are resolved without a space. | 610980 | - | Platform | When a multi-list field with a custom validation displays a pop-up dialog containing a fatal error, upon closing this dialog the field in error does not display a red validation bar as it should. | 616548 | - | Platform | Unable to remove items from Recycle Bin after applying pre-release 10.3.2 rev. 010586 PRE. | 616843 | - | Platform | The *Links* table does not include droplist links. | 618724 | - - ## Dependency - | Context | Description | ADO no. | - | --- | --- | --- | - | SXA | SXP 10.3.2 requires SXA bug fix *578189 - The content tree appears instead of available renderings in the Select a Rendering dialog*. This SXA fix was hotfixed to SXA 10.3.0 in summer 2023 and is included in the latest [Cumulative Hotfix for SXA 10.3.0 and Sitecore XP 10.3](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1002845). | 578189 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103_Update2/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103_Update2/index.md deleted file mode 100644 index 6cd2688be..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103_Update2/index.md +++ /dev/null @@ -1,90 +0,0 @@ ---- -title: "Sitecore Experience Platform 10.3 Update-2" ---- - -Update-2 to Sitecore Experience Platform 10.3.\ -See [all available versions here](/downloads/Sitecore_Experience_Platform). - -## Download options for Azure App Service deployments - | Resource | Description | - | --- | --- | - | [Packages for XM Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore%2010.3.2%20rev.%20010837%20(WDP%20XMSingle%20packages).zip) | Packages for the Sitecore XM Single (XM0) instance topology. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore%2010.3.2%20rev.%20010837%20(WDP%20XMScaled%20packages).zip) | Packages for each role of the Sitecore XM Scaled (XM1) topology. | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore%2010.3.2%20rev.%20010837%20(WDP%20XPSingle%20packages).zip) | Packages for the Sitecore XP Single (XP0) instance topology. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore%2010.3.2%20rev.%20010837%20(WDP%20XPScaled%20packages).zip) | Packages for each role of the Sitecore XP Scaled (XP1) topology. | - | [Sitecore Azure Toolkit Resources](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore%20Azure%20Toolkit%20Resources%2010.3.2%20rev.%20010837.zip) | Sitecore Azure Toolkit Resources package. | - -## Download options for On Premises deployments - | Resource | Description | - | --- | --- | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore%2010.3.2%20rev.%20010837%20(WDP%20XM1%20packages).zip) | Packages for each role of the Sitecore XM Scaled (XM1) topology. | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore%2010.3.2%20rev.%20010837%20(WDP%20XP0%20packages).zip) | Packages for the Sitecore XP Single (XP0) instance topology. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore%2010.3.2%20rev.%20010837%20(WDP%20XP1%20packages).zip) | Packages for each role of the Sitecore XP Scaled (XP1) topology. | - | [Installation Assistant for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore%2010.3.2%20rev.%20010837%20(Setup%20XM1%20Developer%20Workstation%20rev.%201.5.2-r5).zip) | Sitecore Install Assistant tool and resources for installing a Sitecore XM Scaled (XM1) topology. | - | [Installation Assistant for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore%2010.3.2%20rev.%20010837%20(Setup%20XP0%20Developer%20Workstation%20rev.%201.5.2-r5).zip) | Sitecore Install Assistant tool and resources for installing a Sitecore XP Single (XP0) topology. | - | [Sitecore Installation Framework](/downloads/Sitecore_Installation_Framework/2x/Sitecore_Installation_Framework_240) | Tooling for configuring and deploying Sitecore topologies to local or remote servers or virtual machines. | - | [SIF Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Installation%20Framework/2x/Sitecore%20Installation%20Framework%20240/Secure/Sitecore_Installation_Framework_Configuration_Guide-2.4.0.pdf) | Guide describing how to use the Sitecore Installation Framework (SIF), Microsoft PowerShell module to deploy and configure a Sitecore topology. | - | [Installation Guide for XM Scaled Topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore_XP_10.3.X_Installation_Guide_for_the_XM_Scaled_Topology.pdf) | Guide describing how to install the Sitecore XM Scaled (XM1) topology to run the Content Management (CM), Content Delivery (CD),and Sitecore Identity roles. | - | [Quick Install Guide for XP Developer Workstation](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore_XP_10.3.X_Quick_Installation_Guide_for_a_Developer_Workstation.pdf) | Guide describing how to install the Sitecore XP Single (XP0) topology on a workstation for development and testing purposes. | - | [Installation Guide for XP Scaled Topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore_XP_10.3.X_Installation_Guide_for_the_XP_Scaled_topology.pdf) | Guide describing how to install the Sitecore XP Scaled (XP1) topology. | - | [Sitecore UpdateApp Tool](/downloads/Sitecore_UpdateApp_Tool/1x/Sitecore_UpdateApp_Tool_131) | Tool for updating SXP Core, Master, and Web databases. | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore%2010.3.2%20rev.%20010837%20(upgrade%20files).zip) | Package containing configuration files and database scripts for upgrading. | - | [Update Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore_XP_10.3.X_Update_Installation_Guide.pdf) | Guide describing how to update to the latest release in the Sitecore 10.3.X series. | - -## Download options for Sitecore Container deployments - | Resource | Description | - | --- | --- | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sxp%2F10.3.2.010837.1896) | Link to the Sitecore Container Deployment Package on GitHub, containing Docker Compose and Kubernetes specification files for deploying Sitecore in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on the Sitecore Container Registry (SCR). | - | [Developer Workstation Deployment with Docker Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore_XP_10.3.X_Developer_Workstation_Deployment_With_Docker.pdf) | Guide describing how to use Sitecore Containers with Docker Compose to deploy a developer workstation. | - | [Production Environment Deployment with Kubernetes Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore_XP_10.3.X_Production_Deployment_With_Kubernetes.pdf) | Guide describing how to use Sitecore Containers with Kubernetes to deploy to the Azure Kubernetes Service. | - | [Upgrade Container Deployment Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore_XP_10.3.X_Upgrade_Container_Deployment_Guide.pdf) | Guide describing how to use the Sitecore Container Deployment Package to upgrade the SQL Server databases from an existing Sitecore XP 10.0.X installation. | - -## Modules - | Resource | Description | - | --- | --- | - | [Sitecore Identity Server](/downloads/Sitecore_Identity/7x/Sitecore_Identity_70331) | Single sign-on mechanism for SXP deployments, used with Sitecore's membership storage or can be extended for use with an external identity provider. | - | [Scripts for Sitecore Security database](/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_05) | Set of scripts for moving Sitecore's Security membership objects from the Core database to its own security database. | - | [Sitecore Experience Accelerator](/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1030) | Tools to accelerate the production of SXP websites enabled by reuse of templates, layouts, and renderings. | - | [Azure Blob Storage](/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_501) | Azure Blob Storage package for XM Developer, XM Scaled, XP Developer, XP Scaled configurations. | - | [Sitecore Publishing Service Module](/downloads/Sitecore_Publishing_Service_Module/10x/Sitecore_Publishing_Service_Module_1030) | Integrates the optional Sitecore Publishing Service with SXP, which focuses on high performance publishing in large-scale deployments. | - | [Sitecore Headless Rendering](/downloads/Sitecore_Headless_Rendering/21x/Sitecore_Headless_Rendering_2101) | Headless services bundle including the server-side APIs, Edge Connector, and front-end SDKs for JavaScript (JSS) and ASP.NET rendering. | - | [Resource files for Modules](/downloads/Resource_files_for_Modules/1x/Resource_files_for_Modules_100) | Module resource files for upgrading Core, Master and Web. | - -## Connectors - | Resource | Description | - | --- | --- | - | [Sitecore Connect for Content Hub](/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_520) | Connector for synchronizing data between SXP and Content Hub. | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales](/downloads/Dynamics_CRM_Connect/8x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_800) | Connector for synchronizing data between SXP and Microsoft Dynamics 365 for Sales. | - | [Sitecore Connect for Salesforce CRM](/downloads/Salesforce_Connect/8x/Sitecore_Connect_for_Salesforce_CRM_800) | Connector for synchronizing data between SXP and Salesforce CRM. | - | [Sitecore Connect for Salesforce Marketing Cloud](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_80) | Connector for synchronizing data between SXP and Salesforce Marketing Cloud. | - | [Sitecore Data Exchange Framework](/downloads/Data_Exchange_Framework/8x/Data_Exchange_Framework_800) | Framework for transforming and transferring data between SXP and 3rd party systems. | - -## Release information - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Experience_Platform/103/Sitecore_Experience_Platform_103_Update2/Release_Notes) | List of improvements and resolved issues implemented in the release. | - | [Known issues](https://support.sitecore.com/kb?id=kb_search&kb_knowledge_base=3492d025db70dc109e54320a6896199f&spa=1&language=en&u_affected_software=sitecore_experience_platform) | Link to known issue articles on the Sitecore Knowledge Base. | - | [Developer Documentation](https://doc.sitecore.com/xp/en/developers) | Link to Sitecore developer documentation. | - | [Assembly list](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore.Platform.Assemblies%2010.3.2%20rev.%20010837.zip) | Complete list of assemblies shipped with the release. | - -## Client translations - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore%2010.3.2%20rev.%20010837%20(da-DK).zip) | Danish language client translation file. See [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) on how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore%2010.3.2%20rev.%20010837%20(de-DE).zip) | German language client translation file. See [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) on how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore%2010.3.2%20rev.%20010837%20(ja-JP).zip) | Japanese language client translation file. See [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) on how to import a new language into the Sitecore installation. | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/103/Sitecore_Experience_Platform_10.3.2/Sitecore%2010.3.2%20rev.%20010837%20(zh-CN).zip) | Chinese language client translation file. See [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) on how to import a new language into the Sitecore installation. | - | [Chinese GeoIP Localization Pack](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/90/Sitecore%20Experience%20Platform%2090%20Initial%20Release/Secure/GeoIp%20Location%20China%20Localization%20Pack%201.0.0%20rev.%20180226.zip) | The pack provides enhanced region detection for China. The pack should be installed as a regular Sitecore module. | - -## Usage policies - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - - - - - Sitecore may collect information such as product version, number of site visits, generic hardware and software information, and recovery actions. This information will be used to help optimize your experience. All data will be processed in accordance with Sitecore’s privacy policy [here](https://www.sitecore.com/trust/privacy-policy). Should you have any queries or wish to discuss this, [please refer to our FAQ](https://kb.sitecore.net/articles/424335), or contact your Sitecore Account Manager. - diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/104/Sitecore_Experience_Platform_104/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/104/Sitecore_Experience_Platform_104/Release_Notes.md deleted file mode 100644 index 5a6a9e56e..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/104/Sitecore_Experience_Platform_104/Release_Notes.md +++ /dev/null @@ -1,283 +0,0 @@ ---- -title: 'Release Notes' ---- -- Jul 29, 2024: Added ltsc2019 and ltsc2022 container images for Sitecore Docker Tools Assets compatible with SXP 10.4. -- Jul 24, 2024: Added ltsc2019 container images for Sitecore Connect™ for Content Hub 5.2.0. -- Jun 11, 2024: Added ltsc2019 Container images and support package for Sitecore XP 10.4. Added ltsc2019 container images for Identity Server. -- May 28, 2024: Patched and republished the four Azure App Service download package options and the SAT Resources package to add missing Application Insights configuration. Package version numbers were not changed, to avoid re-spinning the entire release.\ -To confirm you have the correct Azure App Service package version, ensure the following file is included in your zip download:\ -`Sitecore 10.4.0 rev. 010422 (xx) (Cloud)_xxx.scwdp.zip\Content\Website\ApplicationInsights.config`\ -To confirm you have the correct Sitecore Azure Toolkit Resources 10.4.0 rev. 010422.zip package, ensure the following file is included in your zip download:\ -`CargoPayloads\Sitecore.Cloud.ApplicationInsights.sccpl\CopyToWebsite\ApplicationInsights.config` -- Apr 30, 2024: Released Sitecore Experience Platform 10.4.0. - -This release includes new features and improvements made in Sitecore Experience Platform (SXP) 10.4. Sitecore recommends that you upgrade to this release if it aligns with the specific needs of your organization. This release contains significant improvements in functionality worth evaluating. - -- [Highlights](#highlights) -- [New features/improvements](#new-featuresimprovements) -- [Deprecated](#deprecated) -- [Removed](#removed) -- [Resolved issues](#resolved-issues) - -## Highlights - -Sitecore Experience Platform (SXP) 10.4 includes updates for improved security, prolonged supportability, performance, and usability. Highlights include: - -- Updated Javascript libraries throughout SXP components. -- Improved security hardening throughout SXP to decrease risks due to vulnerabilities. -- Updated 3rd party compatibility: SQL Server 2022, latest Azure Kubernetes Service. -- Improved accessibility - enabling content authors with poor vision to better manage content in the Content Editor. For example, you can now: - - Navigate the ribbon and use these actions: create, rename, move, and delete items - - Navigate and expand items in the content tree. - - Navigate and select various types of fields in the content area. - - Listen to information about UI elements through assistive third-party technology. -- Implemented Solr soft commits to make index changes visible to search. -- Added a new *​Sitecore Client Content Reader*​​ user role that grants read access to Content Tree items in the Content Editor and Media Library. -- Added the ability to create a custom or regional language directly in the Content Editor, such as `en-EU`, which extends beyond those ISO language formats that are registered in .NET. -- Added the ability to trigger campaigns or goals based on rules. This is relevant, for example, if you want to display content from a campaign when certain pages are visited. -- Added the ability to bulk assign marketing definitions in xDB to content, improving the usability and efficiency in associate a marketing campaign to multiple content items at the same time. -- Added a new `Codeless Schema Extension` module, enabling business users to extend the xConnect schema without requiring code development. -- Added an open source module with the ability to extract data from xDB and transform the schema to feed external analytics tools. This also includes templates that show how the reports can be recreated in Power BI. - -In addition, our SXP 10.4 release adds flexibility in interworking with new SaaS products across Sitecore's portfolio and with the community ecosystem, enabling our current customers to continue with existing investments in SXP, while innovating on their own pace with Sitecore's other SaaS-based products. Related tooling released along with SXP 10.4 include: - -- XM to XM Cloud Migration Tool for migrating content, media, and users from a source XM instance to an XM Cloud environment. This tool provides an aid for the routine and sometimes recurring back-end migrations, so our customers/partners can focus on migrating developing new front-end sites. -- xDB to CDP Migration Tool for transferring site visitor contact facets to Sitecore's CDP and Personalize products, and also via Sitecore Connect to external systems. This provides the ability to interwork with or eventually adopt other SaaS based innovation. - -SXP 10.4 also includes this important change: - -- Updated the media item duplication logic to resolve issues when deleting duplicates of a media item sharing the same blob. Now, duplicating a media item creates a duplicate of a blob. After upgrading to this version, you must run the `/sitecore/admin/duplicates.aspx` admin page to ensure all duplicate media items in your solution refer to a blob copy, not a shared one. See ADO no. 563054 in [Resolved issues](#resolved-issues). - -## New features/improvements - -| Context | Description | ADO no. | -| ------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Platform | Changed the value of the ASP.NET `validateRequest` setting for the _pages_ configuration node, to be enabled by default. | 92824 | -| Platform | Image files with the `.ico` extension are now correctly identified as images and displayed in the Media Library. | 230118, 570809 | -| Platform | ​The AntiCSRF functionality designed for the Sitecore Client is now disabled in out-of-the-box Content Delivery instances. | 436657 | -| Platform | ​The setting `Rendering.SiteResolvingIncludeStartItem` can now be used to control whether an item must be under site `startItem` or under site `rootPath`, to be considered part of the site. The default value is _true_. | 444353 | -| Platform | The `parseDataSource` pipeline now writes more debug information into the log files. | 486912 | -| Platform | An INFO message is now added to the log files when the current `InstanceName` does not match the `PublishingInstance` name. | 528783 | -| Platform | Updated the Domain Manager text in the pop-up window, when creating a new domain. | 555884 | -| Platform | Improved user experience by updating several libraries to their latest versions and replacing deprecated libraries with more contemporary alternatives. | 561690 | -| Platform | You can now target specific audiences more effectively by adding custom languages, combining any ISO language code with a country/region code. This includes the ability to use nonstandard country/region codes, such `en-EU`. | 562647, 575028, 548481 | -| Platform | Added the ability to create a custom or regional language directly in the Content Editor, such as `en-EU`, which extends beyond those ISO language formats that are registered in .NET. | 569366 | -| Platform | ​The screenshot functionality that uses PhantomJS can now be disabled by switching the setting to _false_. | 570391 | -| Platform | ​The data template name is now included in the payload of a webhook event handler request. | 580191 | -| Platform | The Publish Manager now supports the publishing of multiple items. | 583069 | -| Platform | You can now add custom parameters for authentication using Webhooks OAuth2.0 Client Credentials Grant and OAuth2.0 Password Credentials Grant. | 583781 | -| Platform | It is now possible to use folder templates in the _Insert from Template_ dialog. | 585073 | -| Platform | It is now possible to configure the `Rendering.SiteResolvingIncludeStartItem` setting on a per-site basis. | 594030 | -| Content Editor | ​Introduced a new security role, granting users read access to items in the Content Editor and the Media Library, intended for providing basic read access. | 555423 | -| Content Editor | Enhanced the Content Editor's accessibility in line with the W3C ARIA Authoring Practices Guide, enabling users to seamlessly navigate with a keyboard through ribbons, the content tree, and various field types. Additionally, introduced a visual focus indicator and labels to support users using assistive technologies, ensuring an inclusive user experience. | 561870 | -| Search | Implemented Solr Soft Commits to make index changes visible to search. | 97020 | -| Search | Used `Delete-By-Id` instead of `Delete-By-Quer` for Solr document deletion. | 561884 | -| xDB | Added the ability to bulk assign marketing definitions in xDB to content, improving the usability and efficiency in associate a marketing campaign to multiple content items at the same time. | 579430 | -| Experience Analytics | Added a new open source module providing the ability to extract data from xDB and transform the schema to feed external analytics tools. This also includes templates that show how the reports can be recreated in Power BI. | 576755 | -| Experience Optimization | Provided compatibility of Content Availability and Experience Optimization features so they can both be enabled together, to address scenarios like A/B testing across multiple regions. | 518578, 519179 | -| Experience Optimization | Added the ability in the Marketing Control Panel to associate a goal to multiple items at the same time. | 539923 | -| Personalization | Added a new module called `Codeless Schema Extension`, enabling business users to extend the xConnect schema without requiring code development. | 504800 | -| Email Experience Manager | Improved error handling for Chillkat software issues. | 392574 | -| Email Experience Manager | Added support for special characters in email campaign descriptions. | 604409 | -| Containers | Created a new Kubernetes script, `K8s-init.ps1`, for populating data such as passwords and users for secrets. | 555220 | -| Containers | Updated the Kubernetes specifications; `resources` and `replacements` are now used in place of `vars` and `bases`. | 590811 | -| Installation | Updated the .NET 6 hosting-bundle in the `prerequisites.json` file. | 596223 | -| Installation | An auto-update link to `vc_redist.x64.exe` has been set in the `prerequisites.json` file, which takes the latest version. | 549000 | -| Installation | ​You can now change the default package installation behavior so that the item in the target database preserves the version numbers from the source database. | 193262 | -| Installation | Updated the 3rd party license file, `Duende_License.key`, to the Sitecore Identity module. See [KB1003162](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1003162). | 569891 | -| Performance | Improved performance of the ​Workbox application. | 198937 | -| Performance | Improved performance of `Sitecore.Configuration.Settings.GetTimeSpanSetting`. | 470887 | -| Performance | Improved performance of field-level language fallback in a scenario where `enableFieldLanguageFallback` is set to _false_. | 550404 | -| Performance | Improved performance of field-level language fallback when processing `item:versionRemoved` events. | 550410 | -| Performance | ​Improved performance of the `AccessResultCache` class. | 551213 | -| Performance | ​Improved performance of the `HandleSimulationRequest` processor. | 556245 | -| Performance | Enabled performance improvements for the Translation cache in the default deployment. | 560817 | -| Performance | Improved performance of `getItem` calls in `AddItemLinkReferences`. | 561502 | -| Performance | ​Improved performance of retrieving a media item with a whitespace in its name. | 580597 | -| Performance | Optimized the Experience Edge item deletion function for better performance. | 588607 | -| Performance | Improved performance in rebuilding the `sitecore_master_index` have been made. | 589212 | -| Performance | ​Improved performance of the `ReferenceReplacementJob`. | 594019, 594018 | -| Performance | ​Improved performance of the `LinkDatabase`. | 590416 | -| Performance | Improved performance of `Media.ResizeProcessor`. | 595667 | -| Logging | Added audit logging for Sitecore logins via Identity Server. | 602417 | -| Logging | Added audit logging when unlocking an item in the Content Editor _Review tab - My Items_. | 603209 | -| Security | Introduced blocking of SVG files containing JavaScript from being uploaded to the Media Library, as a default configuration. System administrators can disable this default setting as needed. | 580951, 580973 | -| Security | Enhanced security and supportability across the product and in 3rd party libraries, to reduce potential vulnerabilities, and to reduce the likelihood of requiring security updates in the future. | 294692, 429078, 507334, 523801, 543815, 546711, 551077, 551078, 552315, 553171, 559074, 561299, 561302, 563856, 564381, 565474, 568150, 572526, 576798, 584731, 584734, 586965, 588740, 594408, 604627, 605980, 609758 | - -## Deprecated - -| Context | Description | ADO no. | -| -------- | --------------------------------------------------------------------------------------------------------------------- | -------------- | -| Platform | Deprecated File Explorer and PhantomJS related APIs from the XM foundation. They will be removed in a future release. | 444858, 591777 | - -## Removed - -| Context | Description | ADO no. | -| -------- | ----------------------------------------------------------------------------------- | -------------- | -| Platform | Removed Developer Center, Update Center, and various outdated JavaScript libraries. | 525354, 540187 | - -## Resolved issues - -The following issues have been fixed: - -| Context | Description | ADO no. | -| --------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | -| Platform | The `​Sitecore.Data.ID.TryParse` method does not parse short ID values. | 91923 | -| Platform | Some artifacts of the deprecated Developer Center application are still present in Sitecore. | 136226 | -| Platform | When a request that contains illegal characters in the path is sent to the server, ​an error is thrown instead of redirecting to the _​Item Not Found_ page. | 290139 | -| Platform | If you create a virtual user with a name that contains only numeric characters, an exception is thrown. | 381683 | -| Platform | In the Content Editor​, the _​Details_ and _​Reset_ buttons are inactive when `RequireLockBeforeEditing` is set to _false_. | 438400 | -| Platform | A `+` symbol within the `href` attribute in an anchor tag breaks the URL. | 439771 | -| Platform | When you detach media from an item, a `​BlobProviderException` error is thrown during publishing. | 490149 | -| Platform | `RollingFileAppender` does not write logs to the same log file after a configuration change. | 508897 | -| Platform | When you set `Media.UploadAsFiles` to _​true_ and use the _​Upload files (advanced)_ option, media will be saved to a database. | 509585 | -| Platform | ​An external link with a `queryString` in the general link field of rendering parameters is truncated after the symbol `&`. | 527454 | -| Platform | The ​Japanese client translation file contains incorrect translations. | 545127 | -| Platform | ​The _Publishing Restrictions_ dialog causes unintended item version updates. | 548738 | -| Platform | ​The _Broken Links_ dialog only shows broken links for the last database, rather than for all selected databases. | 549003 | -| Platform | When the `WebEdit.UsePopupContentEditor` setting is enabled, it breaks the SXA metadata partial design. | 552038 | -| Platform | ​Circular template references can throw a `StackOverflowException` error. | 553229 | -| Platform | When a shared field is updated​, a new version of the item is created silently without workflow state. | 553284 | -| Platform | The checkbox field of the rendering parameters resets to the standard value when you delete the data source. | 554399 | -| Platform | ​When you upload to the Media Library with the options _Make uploaded media items versionable_ and _Overwrite existing media items_, shared fields from the overridden item persisted. | 558081 | -| Platform | ​You cannot set security rights when `PropagationType.Any` is present. | 559389 | -| Platform | ​When you remove the alias and publish an item, the alias of the item is not removed from the web database. | 562638 | -| Platform | ​The item version number is renumbered after installing the Sitecore package. | 565562 | -| Platform | Explore mode core item present in XM topology. | 567784 | -| Platform | When `Rendering.SiteResolvingMatchCurrentSite` is set to _​false_, the `​StartItem` setting is ignored when resolving the site. | 569444 | -| Platform | ​Standard Value tokens do not work correctly in the fallback version of a cloned item. | 573972 | -| Platform | ​Links for items in non-default site language versions are incorrect. | 575848 | -| Platform | `IQueryable` cannot be reused for concurrent query execution. | 576428 | -| Platform | ​Link generation using a display name with special characters does not work. | 577905 | -| Platform | When `enablePreview` is set to _​true_, an incorrect site is resolved during the link generation process. | 578547 | -| Platform | After editing the shared `​Renderings` field of an item, publishing to Edge results in a _System.ArgumentNullException: Null ids are not allowed_ error. | 578684 | -| Platform | When the rendering parameter has an empty value, it causes broken links. | 578783 | -| Platform | ​When you rename an item using the Sitecore CLI, `LayoutData` does not publish and the old `LayoutData` is still available. | 581503 | -| Platform | When language is not defined in the site definition, the *Link Manager*​ resolves the site incorrectly. | 581545 | -| Platform | A deadlock can occur on application start if aggregation runs for the first time and `DeviceResolver` runs simultaneously. | 582497 | -| Platform | Page crashes after inserting an image in the Rich Text Editor in a Chrome (version 113.0.5672.64) or Edge (version 113.0.1774.35) browser. See [KB1003010](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1003010). | 584490 | -| Platform | ​The `GetLookupSourceItems` pipeline for the `Droplist` field in the Content Editor does not work correctly. | 585248 | -| Platform | In the Content Editor, the EN language might be missing from the publishing form. | 586199 | -| Platform | When cache key indexing is enabled, testing a path before creating an item can cause multiple items to be created with the same name. | 586840 | -| Platform | Database context changes are lost when switching to Control Panel. | 591103 | -| Platform | The internal link to a versioned media item added in the Rich Text Editor contains the wrong language using Sitecore Link via Search when `languageEmbedding` is set to _​always_. | 592301 | -| Platform | The internal link to a versioned media item added in an RTE field contains the incorrect language. | 592307 | -| Platform | ​Recursive Related Items in Content Dependency do not work correctly. | 593054 | -| Platform | `GetRenderingContentDependenciesPipeline` can crash when there are broken links. | 593160 | -| Platform | Recursive Related Items and Related Items in Content Dependency will return all items in all languages. | 593323 | -| Platform | If the site configuration sets `enablePreview` to _​false_, the `DefaultItemSiteResolver` cannot resolve a site. | 593621 | -| Platform | Application cannot be started in case of issues with the Device Detection database. See [KB1003128](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1003128). | 593927 | -| Platform | If `alwaysExcludeVirtualFolder` is set to _true_, accessing modal windows from Desktop returns a _Requested Document Not Found_ error. | 594740 | -| Platform | ​The link provider settings do not take effect on the item's URL properties. | 594913 | -| Platform | For some items, the long item path is not being fully displayed. | 596906 | -| Platform | _​Link Manager_ refers to the item but will not use the display name while processing ancestors if `ItemLanguageFallback` is set to _true_. | 597804 | -| Platform | Standard Values with a validation rule for fatal error cannot be saved. | 598149 | -| Platform | Item fallback version provided in the processor argument is not respected. | 609279 | -| Platform | OAuth2.0 authentication types for webhooks, configured in the Content Editor to receive event or workflow action notifications, are now compatible with Azure AD and Azure B2C providers. | 607491 | -| Platform | The `isLanguageFallbackValid` cache index size was not calculated correctly. This has been fixed by distinguishing between the size of the cache with and without the index. | 600792 | -| Platform | The _Unlock All_ functionality processed duplicates items incorrectly. | 604856 | -| Platform | ​When an item is serialized, the audit log now shows the correct path. | 605214 | -| Platform | ​Making changes to media items that are stored as resources no longer causes errors. | 606299 | -| Platform | ​When an item is stored as a resource item, the `Created` field in the `Item Properties` window now shows the creation date for the latest version. | 604035 | -| Platform | ​When editing multilist fields in the Experience Editor, field validation now works. | 602648 | -| Platform | When two threads tried to modify two unrelated items, in some cases, a deadlock issue occurred. | 599633 | -| Platform | ​Media folder icons and preview images are now displayed correctly in the _Select Media_ dialog within the Content Editor and Experience Editor. | 604495 | -| Platform | The _Applications_ and _Control Panel Applications_ Content Tree search categories are not displayed in the search results for the Core database. | 608605 | -| Content Editor | In the Rich Text Editor, when you insert snippets, `

` and `

` tags do not display correctly. | 329704 | -| Content Editor | Modifying tracking fields in search operations overwrites the values in the items. | 419639 | -| Content Editor | The field editor does not update images properly. | 535446 | -| Content Editor | The results of the Build Search Query have the language as a suffix. | 550188 | -| Content Editor | If a virtual user publishes items several times, the ribbon in the Content Editor becomes collapsed. | 554564 | -| Content Editor | English language is not visible in the Content Editor _Publish Item_ and _Publish Site_ dialogs. See [KB1003096](https://sitecore.service-now.com/kb?id=kb_article_view&sysparm_article=KB1003096). | 586199 | -| Content Editor | Content Tree search categories _Applications_ and _Control Panel Applications_ are not visible. | 608605 | -| Content Editor | ​In the Content Editor, criterion search does not work for different client languages. | 569475 | -| Experience Editor | Placeholder permissions are not resolved correctly in the Page Editor. | 95927 | -| Experience Editor | Experience Editor doesn't encode HTML entities while saving. | 114860 | -| Experience Editor | When editing an empty Multi-Line Text field, `

` tags display after saving the changes. See [KB1000668](https://sitecore.service-now.com/kb?id=kb_article_view&sysparm_article=KB1000668). | 398289 | -| Experience Editor | Launching Experience Editor in two browsers simultaneously after restarting a Sitecore instance causes one of the sessions to crash. | 412499 | -| Experience Editor | The _Add here_ button sometimes overlays the panel with the tree structure in Experience Editor. | 415386 | -| Experience Editor | `HtmlEditor.RemoveScripts` removes scripts even after being set to _false_. | 500604 | -| Experience Editor | Clicking results from _General Link with Search_ throws an exception because the language is appended to the item ID. | 511692 | -| Experience Editor | In the Experience Editor, when saving the Rich Text Editor with a link that contains the characters `#` and `\|`, an unwanted `\|` is added before the `#` symbol. | 552274 | -| Experience Editor | Intermittent exceptions occur when trying to add a new component in Experience Editor. | 556913 | -| Experience Editor | Adding many conditions in a single personalization rule throws an exception error in the Experience Editor. | 558847 | -| Experience Editor | JavaScript errors may occur when opening additional pop-ups in Experience Editor inside EXM. | 561395 | -| Experience Editor | The _Lock and Edit_ button does not work after the _Save_ and _Unlock_ actions. | 563584 | -| Experience Editor | Experience Editor is unable to save HTML tags in an RTE field if it contains nested tags. | 568200 | -| Experience Editor | Breadcrumb navigation in Experience Editor throws a 404 error in multisite environment. | 586738 | -| Experience Editor | Duplicate renderings display in the _Select a Rendering_ dialog in Experience Editor. See [KB1003214](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1003214"). | 573497 | -| Experience Editor | The notification bar with a message is displayed after logging in to preview as another user. | 590276 | -| Experience Editor | `DateTime` fields are rendered in UTC time instead of server time. See [KB in progress](https://sitecore.service-now.com/kb?id=kb_article_view&sysparm_article=KBXXXXX). | 591676 | -| Experience Editor | The _Go_ button in Experience Editor incorrectly resolves site. | 596216 | -| Experience Editor | Breadcrumbs do not resolve the correct site when clicking the _Go_ button without selecting any item. | 597335 | -| Experience Editor | No audit log is added when an item is locked or unlocked in Experience Editor. | 601330 | -| Experience Editor | The _WebEdit_ button registers changes only once after clicking _Ok_ in field editor, and discards any subsequent attempts. | 608455 | -| Forms | Incorrect email validation message is shown in Sitecore Forms. See [KB1002247](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB1002247). | 294737 | -| Forms | Sitecore Forms form submission does not account for sites with virtual folders. | 407458 | -| Forms | The next page of a form is not scrolled up automatically. | 429699 | -| Forms | Placeholder attribute for a form field is present in the page element of the label for a field where Placeholder was not defined. | 554717 | -| Forms | Forms tracking updates the `SC_ANALYTICS_GLOBAL_COOKIE` without the user providing consent to being tracked. | 526015 | -| Forms | Redirect to page submit action is not showing the current selection. | 566609 | -| Forms | Sitecore forms continue to validate the email field in spite of validation being disabled. | 567867 | -| Forms | _Your Changes have not been applied_ dialog appears for the form's email field in different languages. | 585622 | -| Forms | Forms database encounters a communication error with a _Timeout expired_ message. | 592211 | -| Forms | A multipage form validates fields on a page that has been skipped. | 592310 | -| Forms | When a form is submitted with _Is Ajax_ unchecked, the intended language gets removed from the URL. | 600934 | -| Forms | _Unable to access a closed stream_ error occurs when saving files from the file storage table to disk. | 603638 | -| Media | A fallback language version of a source item becomes a regular language version on the new clone item. See [KB0799555](https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB0799555). | 120002 | -| Media | ​When a media blob is referenced by multiple duplicated media items, deleting one of these duplicated items will result in the deletion of the media blob. | 563054 | -| Media | When reattaching media to a file system-based media item, the media is uploaded as a blob and the file path is left empty. | 570288 | -| Media | Media PDF file should be opened in _ReadOnly_ mode when its content is read for indexing. | 591674 | -| Media | Media files are stored in the file system during indexing. | 595670 | -| Media | After replacing the image source in the Media Library, the old image continues to appear in the Rich Text Editor field. | 607329 | -| Search | The value of the `Search.ContentTreeSearch.MaxResults` setting is ignored. See [KB1001790](https://sitecore.service-now.com/kb?id=kb_article_view&sysparm_article=KB1001790). | 515248 | -| Search | Deleting Solr documents requires a separate request for every document. See [KB in progress](https://sitecore.service-now.com/kb?id=kb_article_view&sysparm_article=KBXXXXX). | 561871 | -| Search | The Search API may return incorrect results under load. | 578068 | -| Content Search | Content search is not respecting the inherited read access rights. | 581647 | -| Search | Date range virtual field is not resolved to a Solr field during searching. | 596145 | -| Search | Increased CPU consumption when mapping Solr document fields to POCO class properties. | 603381 | -| Publishing | Unable to remove a published item when publishing with the _Publish Related Items_ setting enabled. | 475856 | -| Publishing | An item's sort order edited in the Experience Editor is not reflected when the item is published using the Publishing Service. | 570472 | -| Publishing | ​Publishing an item with related items in two languages to Experience Edge can cause an Out-Of-Memory exception. | 601950 | -| Email Experience Manager/Security | The HTML import feature is vulnerable to cross-site scripting. | 362927 | -| Email Experience Manager | Conditional rules are not executed during the `Preview for recipient` functionality. | 315407 | -| Email Experience Manager | The `Included Recipient` count is not updated if the content language differs from English. | 328917 | -| Email Experience Manager | The link to data source gets corrupted if it contains Danish characters like `å`, `æ`, and `ø`. | 366194 | -| Email Experience Manager | Links with anchors get stripped from external links when emails are dispatched. | 458558 | -| Email Experience Manager | Recipients list is not updated when users are unsubscribed from an automated email campaign. | 474132 | -| Email Experience Manager | A few automated messages are stuck in the dispatch queue when EXM tries to send messages from DDS. | 483297 | -| Email Experience Manager | The message dispatch sometimes does not mark the task status as complete even after all messages are sent (Recipient Count = 0). | 485046 | -| Email Experience Manager | Additional unexpected emails are sent to the same recipient through the marketing automation email campaign. | 489331 | -| Email Experience Manager | HTML content is truncated after saving. | 565120 | -| Email Experience Manager | The email campaign job status is not retrievable by EXM in the second CM instance in a pair. | 569634 | -| Email Experience Manager | `ClearSuppressionListMessagesBus` should be disabled on DDS roles. | 605688 | -| xDB | The `SC_ANALYTICS_GLOBAL_COOKIE` remains active even after the customer has revoked permission to collect cookies. | 589304 | -| xDB | Unable to delete contact identifiers that contain an apostrophe using the `RemoveContactIdentifier` method. | 566931 | -| Universal Tracker | An exception is thrown when trying to retrieve contacts that have multiple identifiers in a single batch. | 606531 | -| List Manager | Loading segmented lists with lengthy personalization rules causes a serialization exception. | 589574 | -| Path Analyzer | A few items were not moved to the final state at the time of publishing the site. | 562911 | -| Marketing Automation | The _goal taxonomy facet_ rule does not work in the MA plan when the number of goal items is more than 20. | 552034 | -| Marketing Automation | Scheduled enrollment adds contacts to MA plans even if a plan is inactive. | 605291 | -| Experience Optimization | Leaderboard is empty when choosing it from _Reports_. | 597461 | -| Experience Optimization | Component test results display the label as _[Unknown]_ if it's created in a language other than English. | 594972 | -| Marketing Operations | Unable to retrieve image from a Profile Card. | 477153 | -| Marketing Operations | An empty CSV file is generated when _Export Campaign Activities_ is triggered in Campaign Creator using SolrCloud. | 556670 | -| Personalization | The _Country_ personalization condition is not implemented in `Sitecore.CES.GeoIp.Core.Conditions`. See [KB1003208](https://sitecore.service-now.com/kb?id=kb_article_view&sysparm_article=KB1003208). | 545860 | -| Personalization | When you hide a personalization component that has custom rendering parameters, a `System.Xml.XmlException` error occurs. | 559953 | -| Personalization | Long personalization rules in the segmented list can result in a serialization exception. | 589574 | -| Personalization | Creating a new segment with rule _Where Contact Has Triggered Goal_ hangs when one of the conditions is broken. | 597023 | -| Content Testing | An exception occurs in the _Preview and start test_ dialog if there is a personalized component in a partial design and there is a content testing component on the page. | 526905 | -| Content Testing | The item does not progress to the next workflow state with the _Approve with test_ option in Mozilla Firefox. | 571470 | -| Performance | Under high search request load, locks can occur due to concurrency control in `DefaultIndexFieldNameFormatterAttributeReader`, requiring the application to be restarted. | 499366 | -| Performance | A memory leak can occur in the Redis Session Store, so that timed-out commands are not removed from the backlog. | 577894 | -| Sitecore PowerShell Extensions | In the `Sitecore.Reflection.Filtering.config` file, a trailing space in the `OnDoubleClick` method name causes it to fail. See [KB1003097](https://sitecore.service-now.com/kb?id=kb_article_view&sysparm_article=KB1003097). | 589519 | -| Containers | ​HTTPS requests of a Sitecore environment deployed using Containers are redirected to HTTP. | 548363 | -| Containers | When using a container, the user gets redirected to an instance because a port number gets included in the URL. | 602502 | -| Logging | `​RollingFileAppender` stops updating Sitecore log files after the Application Pool has restarted. | 383771 | -| Logging | The Universal Tracker collection service responds with a 500 error code instead of 400 when the event endpoint is requested with an incorrect parameter. | 592353 | -| Logging | After adding an item version, the audit log incorrectly captures the currently open version number, instead of the desired incremented version number. | 601454 | -| Logging | No audit logs are added after creating a new item from Experience Editor. | 601870 | -| Security/Experience Analytics | Sitecore users with a _Developer_ role have access to Experience Analytics. | 286427 | -| Security/Experience Profile | Scripts inserted in the email field via List Manager are executed in Experience Profile. | 382565 | -| Security | Cortex reporting allows users to perform cross-site scripting while expanding the API request. | 390671 | -| Security | A virtual user logging into the `httpRequestBegin` pipeline fails with a _ReportsUserId not found_ exception. | 594111 | diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/104/Sitecore_Experience_Platform_104/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/104/Sitecore_Experience_Platform_104/index.md deleted file mode 100644 index 2f2a1f1e2..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/104/Sitecore_Experience_Platform_104/index.md +++ /dev/null @@ -1,91 +0,0 @@ ---- -title: "Sitecore Experience Platform 10.4" ---- - -Sitecore Experience Platform 10.4 introduces enhancements and corrective updates that provide improved security, prolonged supportability, performance, and usability.\ -See [all available versions here](/downloads/Sitecore_Experience_Platform). - -## Download options for Azure App Service deployments - | Resource | Description | - | --- | --- | - | [Packages for XM Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Sitecore%2010.4.0%20rev.%20010422%20(WDP%20XMSingle%20packages).zip) | **May 28, 2024 - republished package to add missing Application Insights configuration.** Packages for the Sitecore XM Single (XM0) instance topology. | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Sitecore%2010.4.0%20rev.%20010422%20(WDP%20XMScaled%20packages).zip) | **May 28, 2024 - republished package to add missing Application Insights configuration.** Packages for each role of the Sitecore XM Scaled (XM1) topology. | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Sitecore%2010.4.0%20rev.%20010422%20(WDP%20XPSingle%20packages).zip) | **May 28, 2024 - republished package to add missing Application Insights configuration.** Packages for the Sitecore XP Single (XP0) instance topology. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Sitecore%2010.4.0%20rev.%20010422%20(WDP%20XPScaled%20packages).zip) | **May 28, 2024 - republished package to add missing Application Insights configuration.** Packages for each role of the Sitecore XP Scaled (XP1) topology. | - | [Sitecore Azure Toolkit Resources](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Sitecore%20Azure%20Toolkit%20Resources%2010.4.0%20rev.%20010422.zip) | **May 28, 2024 - republished package to add missing Application Insights configuration.** SXP release-specific resources for use with the Sitecore Azure Toolkit. The Sitecore Azure Toolkit is [here](/downloads/Sitecore_Azure_Toolkit/3x/Sitecore_Azure_Toolkit_300). | - -## Download options for On Premises deployments - | Resource | Description | - | --- | --- | - | [Packages for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Sitecore%2010.4.0%20rev.%20010422%20(WDP%20XM1%20packages).zip) | Packages for each role of the Sitecore XM Scaled (XM1) topology. | - | [Packages for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Sitecore%2010.4.0%20rev.%20010422%20(WDP%20XP0%20packages).zip) | Packages for the Sitecore XP Single (XP0) instance topology. | - | [Packages for XP Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Sitecore%2010.4.0%20rev.%20010422%20(WDP%20XP1%20packages).zip) | Packages for each role of the Sitecore XP Scaled (XP1) topology. | - | [Installation Assistant for XM Scaled](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Sitecore%2010.4.0%20rev.%20010422%20(Setup%20XM1%20Developer%20Workstation%20rev.%201.6.0-r4).zip) | Sitecore Install Assistant tool and resources for installing a Sitecore XM Scaled (XM1) topology. | - | [Installation Assistant for XP Single](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Sitecore%2010.4.0%20rev.%20010422%20(Setup%20XP0%20Developer%20Workstation%20rev.%201.6.0-r4).zip) | Sitecore Install Assistant tool and resources for installing a Sitecore XP Single (XP0) topology. | - | [Sitecore Installation Framework](/downloads/Sitecore_Installation_Framework/2x/Sitecore_Installation_Framework_240) | Tooling for configuring and deploying Sitecore topologies to local or remote servers or virtual machines. | - | [SIF Configuration Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Installation%20Framework/2x/Sitecore%20Installation%20Framework%20240/Secure/Sitecore_Installation_Framework_Configuration_Guide-2.4.0.pdf) | Guide describing how to use the Sitecore Installation Framework (SIF), Microsoft PowerShell module to deploy and configure a Sitecore topology. | - | [Installation Guide for XM Scaled Topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Installation_Guide_for_XM_Scaled_Topology_10_4_0.pdf) | Guide describing how to install the Sitecore XM Scaled (XM1) topology to run the Content Management (CM), Content Delivery (CD),and Sitecore Identity roles. | - | [Quick Install Guide for XP Developer Workstation](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Quick_Install_Guide_for_XP_Developer_Workstation_10_4_0.pdf) | Guide describing how to install the Sitecore XP Single (XP0) topology on a workstation for development and testing purposes. | - | [Installation Guide for XP Scaled Topology](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Installation_Guide_for_XP_Scaled_Topology_10_4_0.pdf) | Guide describing how to install the Sitecore XP Scaled (XP1) topology. | - | [Sitecore UpdateApp Tool](/downloads/Sitecore_UpdateApp_Tool/1x/Sitecore_UpdateApp_Tool_141) | Tool for updating SXP Core, Master, and Web databases. | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Sitecore%2010.4.0%20rev.%20010422%20(upgrade%20files).zip) | Package containing configuration files and database scripts for upgrading. | - | [Upgrade Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Upgrade_Installation_Guide_for_Sitecore_Experience_Platform_10_4_0.pdf) | Guide describing how to upgrade Sitecore XP from previous releases. | - -## Download options for Sitecore Container deployments - | Resource | Description | - | --- | --- | - | [Container Deployment Package](https://github.com/Sitecore/container-deployment/releases/tag/sxp%2F10.4.0.010422.1819) | Link to the Sitecore Container Deployment Package on GitHub, containing Docker Compose and Kubernetes specification files for deploying Sitecore in development and production container environments. | - | [Image and Tags List](https://github.com/Sitecore/docker-images/tree/master/tags) | Link to the official tags list (.md and .json format) of all published Sitecore images available on the Sitecore Container Registry (SCR). | - | [Developer Workstation Deployment with Docker Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Developer_Workstation_Deployment_with_Docker_10_4_0.pdf) | Guide describing how to use Sitecore Containers with Docker Compose to deploy a developer workstation. | - | [Production Environment Deployment with Kubernetes Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Production_Environment_Deployment_with_Kubernetes_10_4_0.pdf) | Guide describing how to use Sitecore Containers with Kubernetes to deploy to the Azure Kubernetes Service. | - | [Upgrade Container Deployment Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Upgrade_Container_Deployment_Guide_10_4_0.pdf) | Guide describing how to use the Sitecore Container Deployment Package to upgrade the SQL Server databases of an existing Sitecore XP 10.0.X installation to 10.4.x. | - -## Modules - | Resource | Description | - | --- | --- | - | [Sitecore Identity](/downloads/Sitecore_Identity/7x/Sitecore_Identity_7111) | Single sign-on mechanism for SXP deployments, used with Sitecore's membership storage or can be extended for use with an external identity provider. | - | [Scripts for Sitecore Security database](/downloads/Scripts_for_Sitecore_Security_database/0x/Scripts_for_Sitecore_Security_database_06) | Set of scripts for moving Sitecore's Security membership objects from the Core database to its own security database. | - | [Sitecore Experience Accelerator](/downloads/Sitecore_Experience_Accelerator/10x/Sitecore_Experience_Accelerator_1040) | Tools to accelerate the production of SXP websites enabled by reuse of templates, layouts, and renderings. | - | [Sitecore Codeless Schema Extensions](/downloads/Sitecore_Codeless_Schema_Extensions/1.0.0) | Code and segmentation rules enabling business users to extend the xConnect schema without requiring code development. | - | [Azure Blob Storage](/downloads/Sitecore_Azure_Blob_Storage/1x/Sitecore_Azure_Blob_Storage_600) | Azure Blob Storage package for XM Developer, XM Scaled, XP Developer, XP Scaled configurations. | - | [Sitecore Publishing Service Module](/downloads/Sitecore_Publishing_Service_Module/10x/Sitecore_Publishing_Service_Module_1040) | Integrates the optional Sitecore Publishing Service with SXP, which focuses on high performance publishing in large-scale deployments. | - | [Sitecore Headless Rendering](/downloads/Sitecore_Headless_Rendering/22x/Sitecore_Headless_Rendering_2200) | Headless services bundle including the server-side APIs, Edge Connector, and front-end SDKs for JavaScript (JSS) and ASP.NET rendering. | - | [Sitecore Universal Tracker](/downloads/Sitecore_Universal_Tracker/8x/Sitecore_Universal_Tracker_800) | Optional mechanism for tracking site visitor interactions, well suited for headless implementations and for collecting from different sources. | - -## Connectors - | Resource | Description | - | --- | --- | - | [Sitecore Connect for Content Hub](/downloads/Sitecore_Connect_for_Content_Hub/5x/Sitecore_Connect_for_Content_Hub_520) | Connector for synchronizing data between SXP and Content Hub. | - | [Sitecore Connect for Microsoft Dynamics 365 for Sales](/downloads/Dynamics_CRM_Connect/9x/Sitecore_Connect_for_Microsoft_Dynamics_365_for_Sales_900) | Connector for synchronizing data between SXP and Microsoft Dynamics 365 for Sales. | - | [Sitecore Connect for Salesforce CRM](/downloads/Salesforce_Connect/9x/Sitecore_Connect_for_Salesforce_CRM_900) | Connector for synchronizing data between SXP and Salesforce CRM. | - | [Sitecore Connect for Salesforce Marketing Cloud](/downloads/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud/1x/Sitecore_Connect_software_for_Salesforce_Marketing_Cloud_90) | Connector for synchronizing data between SXP and Salesforce Marketing Cloud. | - | [Sitecore Data Exchange Framework](/downloads/Data_Exchange_Framework/9x/Data_Exchange_Framework_900) | Framework for transforming and transfering data between SXP and 3rd party systems. | - -## Release information - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Experience_Platform/104/Sitecore_Experience_Platform_104/Release_Notes) | List of improvements and resolved issues implemented in the release. | - | [Known issues](https://support.sitecore.com/kb?id=kb_search&kb_knowledge_base=3492d025db70dc109e54320a6896199f&spa=1&language=en&u_affected_software=sitecore_experience_platform) | Link to known issue articles on the Sitecore Knowledge Base. | - | [Developer Documentation](https://doc.sitecore.com/xp/en/developers) | Link to Sitecore developer documentation. | - | [Assembly list](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Sitecore.Platform.Assemblies%2010.4.0%20rev.%20010422.zip) | Complete list of assemblies shipped with the release. | - -## Client translations - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Sitecore%2010.4.0%20rev.%20010422%20(da-DK).zip) | Danish language client translation file. See [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) on how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Sitecore%2010.4.0%20rev.%20010422%20(de-DE).zip) | German language client translation file. See [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) on how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Sitecore%2010.4.0%20rev.%20010422%20(ja-JP).zip) | Japanese language client translation file. See [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) on how to import a new language into the Sitecore installation. | - | [Chinese (zh-CN)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/104/Sitecore%20Experience%20Platform%20104/Sitecore%2010.4.0%20rev.%20010422%20(zh-CN).zip) | Chinese language client translation file. See [instructions](/downloads/Sitecore_Experience_Platform/Client_Translations_Manual) on how to import a new language into the Sitecore installation. | - | [Chinese GeoIP Localization Pack](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/90/Sitecore%20Experience%20Platform%2090%20Initial%20Release/Secure/GeoIp%20Location%20China%20Localization%20Pack%201.0.0%20rev.%20180226.zip) | The pack provides enhanced region detection for China. The pack should be installed as a regular Sitecore module. | - -## Usage policies - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - - - - - Sitecore may collect information such as product version, number of site visits, generic hardware and software information, and recovery actions. This information will be used to help optimize your experience. All data will be processed in accordance with Sitecore’s privacy policy [here](https://www.sitecore.com/trust/privacy-policy). Should you have any queries or wish to discuss this, [please refer to our FAQ](https://kb.sitecore.net/articles/424335), or contact your Sitecore Account Manager. - diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/7_0/Sitecore_Experience_Platform_7_and_below/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/7_0/Sitecore_Experience_Platform_7_and_below/index.md deleted file mode 100644 index 3f98f970e..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/7_0/Sitecore_Experience_Platform_7_and_below/index.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -title: "Sitecore Experience Platform 7 and below" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/7_0/Sitecore_Experience_Platform_7_and_below.aspx ---- - -## Download options - - | Resource | Description | - | --- | --- | - | [Commerce related products](https://sitecoresdn.blob.core.windows.net/downloads/Commerce%20related%20products.zip) | Commerce related products | - | [CRM Dynamics CRM and Integration for WFFM](https://sitecoresdn.blob.core.windows.net/downloads/CRM%2C%20Dynamics%20CRM%20and%20Integration%20for%20WFFM.zip) | CRM Dynamics, CRM and Integration for WFFM | - | [ECM Speak ItemWebAPI](https://sitecoresdn.blob.core.windows.net/downloads/ECM%2C%20Speak%2C%20ItemWebAPI.zip) | ECM, Speak, ItemWebAPI | - | [FXM WFFM Social Design Importer Mobile SDK](https://sitecoresdn.blob.core.windows.net/downloads/FXM%2C%20WFFM%2C%20Social%2C%20Design%20Importer%2C%20Mobile%20SDK.zip) | FXM, WFFM, Social, Design Importer, Mobile SDK | - | [Intranet Portal and Foundry](https://sitecoresdn.blob.core.windows.net/downloads/Intranet%20Portal%20and%20Foundry.zip) | Intranet Portal and Foundry | - | [Migration upgrade Support Package Generator](https://sitecoresdn.blob.core.windows.net/downloads/Migration%2C%20upgrade%2C%20Support%20Package%20Generator.zip) | Migration upgrade Support Package Generator | - | [MySQL Oracle data providers and database conversion tools](https://sitecoresdn.blob.core.windows.net/downloads/MySQL%2C%20Oracle%20data%20providers%20and%20database%20conversion%20tools.zip) | MySQL Oracle data providers and database conversion tools | - | [OMS DMS XDB IP Geolocation](https://sitecoresdn.blob.core.windows.net/downloads/OMS%2C%20%20DMS%2C%20%20XDB%2C%20%20IP%20Geolocation.zip) | OMS, DMS, XDB, IP Geolocation | - | [Print Studio](https://sitecoresdn.blob.core.windows.net/downloads/Print%20Studio.zip) | Print Studio | - | [Public patches for old Sitecore versions](https://sitecoresdn.blob.core.windows.net/downloads/Public%20patches%20for%20old%20Sitecore%20versions.zip) | Public patches for old Sitecore versions | - | [Search related downloads](https://sitecoresdn.blob.core.windows.net/downloads/Search%20-%20related%20downloads.zip) | Search related downloads | - | [Sitecore 5.1 - 5.3](https://sitecoresdn.blob.core.windows.net/downloads/Sitecore%205.1_5.3.zip) | Sitecore 5.1 - 5.3 | - | [Sitecore 6.0 - 6.3](https://sitecoresdn.blob.core.windows.net/downloads/Sitecore%206.0_6.3.zip) | Sitecore 6.0 - 6.3 | - | [Sitecore 6.4](https://sitecoresdn.blob.core.windows.net/downloads/Sitecore%206.4.zip) | Sitecore 6.4 | - | [Sitecore 6.5](https://sitecoresdn.blob.core.windows.net/downloads/Sitecore%206.5.zip) | Sitecore 6.5 | - | [Sitecore 6.6](https://sitecoresdn.blob.core.windows.net/downloads/Sitecore%206.6.zip) | Sitecore 6.6 | - | [Sitecore 7.0 - 7.1](https://sitecoresdn.blob.core.windows.net/downloads/Sitecore%207.0_7.1.zip) | Sitecore 7.0 - 7.1 | - | [Sitecore 7.2 - 7.5](https://sitecoresdn.blob.core.windows.net/downloads/Sitecore%207.2_7.5.zip) | Sitecore 7.2 - 7.5 | - | [Sitecore Active Directory and LDAP](https://sitecoresdn.blob.core.windows.net/downloads/Sitecore%20Active%20Directory%20and%20LDAP.zip) | Sitecore Active Directory and LDAP | - | [Sitecore Media Framework](https://sitecoresdn.blob.core.windows.net/downloads/Sitecore%20Media%20Framework.zip) | Sitecore Media Framework | - | [Staging Sharepoint Azure](https://sitecoresdn.blob.core.windows.net/downloads/Staging%2C%20Sharepoint%2C%20Azure.zip) | Staging Sharepoint Azure | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Initial_Release/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Initial_Release/Release_Notes.md deleted file mode 100644 index c6932737f..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Initial_Release/Release_Notes.md +++ /dev/null @@ -1,358 +0,0 @@ ---- -title: "Release notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Initial_Release/Release_Notes ---- - -**August 2016 – released Sitecore Experience Platform 8.2 (rev. 160729)** - -This a feature release. Sitecore recommends that you upgrade to this release if it includes features that meet the specific needs of your organization. This release contains significant new feature functionality, and we encourage you to evaluate it. - -## Highlights - -The Sitecore Experience Platform 8.2 includes: - -- Content Foundation improvements (Dependency Injection, Caching and Performance) - -- Support for the Publishing Service (installed separately) - -- Support for Express Migration (installed separately) - -- Enhanced Experience Editor features - -- Marketing Funnels - -- New Experience Analytics reports and charting - -- Improved Content Testing UI - -- Enhanced Path Analyzer component - -- Sitecore Experience Accelerator (installed separately) - -- Includes all the fixes from 8.1 Update-3 - - -**Please Note:** In 8.2, we have aligned the version policy across all Sitecore assemblies. This effectively means that assemblies are individually versioned in accordance with changes in the code. As a result, you cannot obtain the Sitecore Experience Platform version by browsing the assembly versions. - -### Documentation - -For all Sitecore Experience Platform 8.2 documentation, please visit the new [Sitecore Documentation Site](http://doc.sitecore.net/). - -## New feature/improvements - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - | SPEAK | SPEAK 2.1 adds support for composite components, which are SPEAK components that are created using other SPEAK components. | - | - | - | SPEAK | The SPEAK component guidance pages include improved demos and provide information about more components. Authenticated users can access the pages using the alias: http://``/sitecore/shell/speakguidance | - | - | - | SPEAK | The SPEAK 2.1 business component library now includes ported versions of the 16 version 1.1 components missing in 8.1 , as well as 9 new components. | - | - | - | Experience Editor | A number of enhancements to the Experience Editor have been implemented for the associated content on a page:

- All page components that have data sources are highlighted with the green frame if the "associated content" checkbox is selected.
- The toolbar of the component shows the datasource item's workflow and the number of pages that use the same datasource item.
- For each piece of content used on the page, you can see the content item's details and the other pages that use this content.
- For each page, you can see all the content items that are used on the page and their workflow states.
- New notifications have been implemented to prevent authors from publishing broken pages.Data sources move through their workflows together with the context page.

| - | FeatureID 80759. PBIs: 80765, 84955, 88676, 80762, 72842, 80761, 97187, 80763, 103887 | - | Experience Editor | The ribbon performance has been optimized for loading in the collapsed state. Now it loads only the required controls when it is collapsed. | - | 80318 | - | Experience Editor | To improve performance, the Experience Editor ribbon now loads only the controls required for the activated tab (lazy loading). | - | 83068 | - | Experience Optimization | The possibility to start a test without using workflows has been enabled by default. | - | 109699 | - | Experience Analytics | Experience Analytics now supports historical re-aggregation. This feature enables any historical data that is added to the xDB after its initial deployment to be viewed in Experience Analytics. | - | - | - | Experience Analytics | Dynamic titles are now displayed on charts. On all reports that you can drill down to, a KPI chart with a dynamic title has been added to make it easy to navigate through the reports. | - | - | - | Experience Analytics | A simple KPI (Key Performance Indicator) chart has been introduced to provide a simple overview of data.
The chart:

- Shows the average or sum for the Visits, Value, and Value per Visit metric(s) for the selected period.
- Enables you to select all the available metrics that you need to personalize the chart.
- Is available from the Experience Analytics dashboard and all drill-down reports.

| - | - | - | Experience Analytics | You can now visualize data using a combination chart when you select two metrics in Experience Analytics. This improvement has been implemented based on UX feedback. | - | - | - | Experience Analytics | The FusionCharts charting library has been replaced with the D3 charting library, which is used in other areas of the platform. This change ensures consistency and improves performance. | - | - | - | Experience Profile | The extended view in the timeline has been redesigned to include color coding that corresponds to the users' activity bars. The data has also been reorganized and aligned to provide a better overview. | - | - | - | Experience Profile | As a result of UX feedback, the scale in the timeline has been changed to a minimum of 1 year and a maximum of 50 years to make it easier to navigate. | - | - | - | Experience Profile | When no data is present, the Experience Profile now shows a hyphen “-“. Previously, the Experience Profile showed an empty field when there was no data, which was confusing to users . The hyphen ensures that there is now a clear distinction. | - | - | - | Experience Profile | The date format in the Experience Profile has been improved to make it easier to understand. It now uses the same format as Experience Analytics. | - | - | - | Experience Profile | The Experience Profile icon on the Launchpad has been replaced with a new design. | - | - | - | Platform | S​​​​​itecore 8.2 now supports .NET Framework 4.5.2 and .NET 4.6. Microsoft no longer supports .NET 4.5. For further information, go tohttps://blogs.msdn.microsoft.com/dotnet/2015/12/09/support-ending-for-the-net-framework-4-4-5-and-4-5-1/. | - | - | - | Platform | Solr 5.1 is now shipped and supported by default​. | - | - | - | Platform | General performance improvements:

- The Cache API has been updated
- Cold start-up times have been improved

| - | - | - | Platform | Support for Oracle 11g has been added, but only when Sitecore is deployed in Experience Management mode – there is no support for Oracle in the xDB. | - | - | - | Platform | Support for SQL Always On has been added.
This add support for a SQL Server 2012 feature that enables high availability and a disaster recovery. SQL Always On availability groups allows a group to have a set of failover databases so that if a database is unavailable, this fails over to a secondary database.
We will support the following scenarios:

- In Datacenter 1 – Primary DB + Sync Secondary DB

- Commit mode: Synchronous - Fail-over: Automatic - Read-only secondary: Off
- Availability Group Listener: Configured

- In Datacenter 2 – Async commit with manual failover

- Commit mode: Asynchronous - Fail-over: Manual - Read-only secondary: Off
- Availability Group Listener: Configured



| - | - | - | Platform | Support for Dependency Injection (DI) has been added, including the following features:

- The Configuration factory which can resolve types from the DI container
- A container that can be configured with configuration files and using code
- A ServiceLocator for wiring up legacy code
- Abstractions for most static managers

| - | - | - | Platform | Search and indexing no longer requires a third-party DI container to enable Solr and there is no need for a Solr support package.​ | - | - | - | Content Editor | In the Content Editor, the UI in the Personalization dialogs has been improved:

- The Rule set editor dialog has been redesigned to include collapsible sections for easier navigation and improved rule editing functions.
- The Rule set editor dialog has been improved to allow easire data input.
- The predefined rules have been given increased prominence to allow for easier reuse.
- Engagement automation and the Segment builder dialogs have been redesigned.
- The Marketing Control Panel now has a new tab for Rules and Predefined Rules to enable users to see which pages have personalization rules applied.

​ | - | - | - | Marketing Foundation | Marketing Funnels have been added to the Sitecore platform.
A Marketer can define and track specific steps that a visitor makes on their website within a funnel, with the end result being a desired outcome, such as a financial outcome in a purchase.
Integrated with the Path Analyzer:

- Funnel steps are shown in a dedicated report
- Each funnel step displays the visitor traffic drop between fulfilling each step.
- Individual steps can be analyzed, and the path that the visitor takes to reach each step is displayed.

| - | - | - | Marketing Foundation | Sitecore now supports the following MongoDB versions:

- Mongo 2.6
- Mongo 3.0 with the MMAPV1 and WiredTiger drivers
- Mongo 3.2 with the MMAPV1 and WiredTiger drivers
- Mongo 3.2 Enterprise with data-at-rest encryption, WiredTiger driver only

| - | - | - | List Manager | First name, Last name, and Preferred Email conditions have been added to the segment builder. | - | - | - | Social Connected | Search indexes have been updated to include the Facebook ID field. | - | 77763 | - | Marketing Foundation | The navigation of the Rule Set Editor dialogs has been made easier with collapsible sections, and the rule editing functions have been improved. | - | - | - | Marketing Foundation | The Segment builder dialogs have been redesigned to give predefined rules increased prominence to enable easier reuse of rules. | - | - | - | Marketing Foundation | Marketing Control Panel UX improvements, including a new tab on Rules and Predefined Rules items that allow the user to see on which pages the rules have been applied for personalization. | - | - | - | MVC | EditFrame support is now availalble in Razor views | 402755, 422360, 444391 | 58151 | - | MVC | Improved support for statically bound controller renderings via SitecoreHelper.ControllerRendering | - | 55924 | - | MVC | Sitecore now supports precompiled views with the Razor Generator view engine. | - | 88817 | - | MVC | The performance of assembly scanning has been improved on startup. | - | 55919 | - | MVC | MVC ​integration with Sitecore's built-in Dependency Injection | - | 108312 | - | Path Analyzer | Horizonal, Vertical and Table views have been added to make it easier to read the maps. | - | 98118, 103329 | - | Sitecore Services Client | Sitecore Services Client supports token authorization | - | 65655 | - | Path Analyzer | The path filter has been added, which provides advanced sequential filtering. | - | 102599 | - | Path Analyzer | You can now apply a Metrics filter with data visualization to easily find outliers or interesting correlations between key node metrics. | - | 108501 | - | Sitecore Services Client | Assembly scanning performacnce at startup has been improved. | - | 76239 | - | Path Analyzer | You can now create and explore funnels in the Path Analyzer. | - | 98166 | - | Path Analyzer | The Dashboard is the new default view for marketers that showcases the KPIs from a selected map, top landing pages, featured paths, and favorite funnels.​ | 106644 | - | - | Path Analyzer | A context-sensitive help window has been implemented in the Path Analyzer. | - | 98124 | - | Path Analyzer | The map selector has been improved to enable favorites, show status, and display metadata. | - | 102597 | - | Path Analyzer | The Date range selector has been redesigned to display date intervals for the the available map data. | - | 102598 | - | Path Analyzer | The Reports feature has been redesigned and now includes more categories. | - | 98119 | - | Path Analyzer | You can now see a list of contacts who visited a particular path. | - | 103318 | - | Path Analyzer | You can now export map data into a CSV file using download or copy commands. | - | 98156 | - | Sitecore Services Client | ​Sitecore Services Client and Web API is now integrated with Sitecore's Dependency Injection. | - | 108278 | - | Path Analyzer | All nodes now have labels which you can switch on and off. | - | - | - | Path Analyzer | Item info for nodes now provides greater detail and includes the display name, template, content tree path, and URL. | - | 98122 | - | Path Analyzer | The Notification bar has been extended to display all key app messages. | - | 98120 | - | Path Analyzer | The ​Page Analyzer app has been rebuilt on the new technology stack and aligned with the main application. | - | 98378 | - | Path Analyzer | API level data compression has been introduced, which reduces payload and improves application responsiveness. | - | 101074 | - | Path Analyzer | Map retrieval performance has been improved, reducing the load on the master database and improving API performance. | - | 101900 | - | Path Analyzer | The Silverlight dependency has been replaced with a standard HTML technology with great cross-browser compatibility. | - | - | - | Path Analyzer | The application has been redesigned for improved usability.​​​ | - | - | - | Path Analyzer | Duplicate nodes are now removed by default. This behavior is controlled by the PathAnalyzer.Aggregation.CollapseDuplicateRecords' setting. | - | 110185 | - | Platform | In 8.2, we have aligned the version policy across all Sitecore assemblies. This effectively means that assemblies are individually versioned in accordance with changes in the code. As a result, you cannot obtain the Sitecore Experience Platform version by browsing the assembly versions. | - | - | - | Platform | The Sitecore Support Package Generator was added to the list of available administration tools - this allows the creation of a ZIP package containing important information about the Sitecore installation and how it is configured. The package can further be provided to Sitecore Support to help with investigation of product issues. | - | - | - -## Breaking changes - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - | Platform | Projects built on Sitecore must be updated to use the .NET 4.5.2 target framework​. | - | - | - | Platform | ​More than 45 abstractions (namespace: Sitecore.Abstractions) introduced to replace static APIs. The static APIs are still available but will be phased out over the next releases. | - | - | - | Platform | ​The Cache API has changed:

- Cache.GetNamedInstance has been moved to CacheManager.GetNamedInstance. There are two overloaded versions generic and common (supporting string keys only).
- FindCacheByName changed signature, now it has two overloaded versions returning ICache and ICache`` respectively
- Cache.Add: overloaded methods accepting size of cached object have been removed. Now the cache is able to calculate size using CacheSizeCalculationStrategy.

| - | - | - | Platform | ​​ASP.NET MVC and WebAPI now use the Sitecore Dependency Injection container by default.​ | - | - | - | Platform | ​The Solr support package is no longer required and configuring the SOLR.NET DI container is no longer done by changing the application type in global.asax​.​ | - | - | - -## Resolved issues - -The following issues have been fixed: - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - | AntiCSRF | ​Media request protection is not applied to media in a hyperlink within the RTE.​ | 438674 | 96268 | - | Caching | ​AccessResultCache indexes are not being entirely cleaned. | 452794 | 96818 | - | Caching | ​Imprecise AccessResultCache MaxSize​ | 365173 | 92570 | - | Caching | ​Excessive data in AccessResultCache​ | 365175 | 92571 | - | Caching | ​[Performance] Sharing 'AccessResultCache' between worker threads leads to significant performance regression in "extranet" scenarios​. | 391713 | 94062 | - | Configuration | ​Preview.ResolveSite should be true by default​. | 452689 | 96808 | - | Configuration | ​[Security] Change default SQL Membership Provider maxInvalidPasswordAttempts​ | 450390 | 96702 | - | Experience Analytics | In a scaled architecture the `AnalyticsDataController` fails to instantiate. | 463752, 469448 | 110707 | - | Experience Editor | ​The_Final Renderings field is not handled correctly in some cases. | 461701, 462385, 461790, 461447, 463021, 462366, 463149, 463592, 464153, 464383, 463742, 464469, 463105, 464093, 465757 | 108023 | - | Experience Editor | ​Datasource location is incorrect for component items with the same name in the Experience Editor. | 423504, 432919, 443036, 407795, | 94856 | - | Experience Editor | ​The WebAppCache.cache file in the Experience Editor contains a reference to a nonexistent file. | 455598, 465837 | 84371 | - | Experience Editor | ​A page loads with "The layout not found" error after removing a component from the page in the Experience Editor. | - | 102917 | - | Experience Editor | ​A validation error can appear after adding a link in the Experience Editor to a rich text field. | - | 112036 | - | Experience Editor | ​Personalization variants are overridden by the default datasource item on MVC pages in the Experience Editor. | 457914, 459551, 466426, 100803 | 100803, 116637 | - | Experience Editor | ​The content of the Rich Text field is transformed into HTML when added and saved using an inline editor. | 462618, 463839, 461844 | 111388 | - | Experience Optimization | ​Screenshot generation can fail in the Create Test dialog when using the scaled setup. | - | 102730 | - | Experience Optimization | ​Multiple language- and localization-related issues happen beacause of inconsistent language attributes used in the Content Testing. | 456392, 456640, 458774, 458772, 460479, 462058 | 88040, 88039 | - | Experience Optimization | Multivariate testing does not work in the Japanese version of Sitecore. ​ | 453814 | 454423, 83387 | - | Experience Optimization | ​A wrong thumbnail is generated for pages to test against in the Page Test dialog. | 456392, 456640, 458774, 458772, 460479, 462058 | 88038 | - | Experience Profile | The timeline in the Experience Profile does not show the most recent activity data. | 452780 | 81835 | - | Experience Profile | The error: "There is no row at position 0" appears in the Experience Profile for contacts with personal info and when there are no pattern cards. | 439278, 437499, 439484, 464381, 465323 | 60022 | - | Experience Profile | ​The engagement values for the latest visit and the total engagement value are incorrect in the Experience Profile. | 438890, 452904, 454961 | 60887 | - | Experience Profile | ​Search in the Experience Profile returnes rows with an incorrect value per visit. | 452904, 454961 | 79419 | - | Experience Profile | ​The error: "An error has occured" appears when the Experience Profile is invoked. | - | 102884 | - | Experience Profile | ​The Experience Profile cannot open the details of the latest contact when the device attribute is explicitly specified for the website in the web.config/sitecore.config file. | 433621 | 60017, 434216 | - | Experience Profile | ​The latest visit data in the Experience Profile is not the latest for a contact that has several visits in a day. | - | 15054 | - | Experience Profile | ​Users with designer and author roles are denied access to the Experience Profile. | 443754, 441625, 443908, 448525, 462338, 465712, 467641 | 96620, 76284, 448614 | - | Federated Experience Manager (FXM) | ​Span tags are visible as raw markup in the Federated Experience manager application menu. | 460972, 460966, 461484, 464313, 465605 | 102071, 105351 | - | Federated Experience Manager (FXM) | Rendering cache is not working in FXM. | 461681 | 108135 | - | Federated Experience Manager (FXM) | ​Dependency on Prototype.js prevents from using jQuery in FXM: a javascript error "Uncaught TypeError: $(...).ready is not a function" appears. | 462368 | 109589 | - | Federated Experience Manager (FXM) | ​The Edge browser stops responding after you click the Add here button in the Experience Editor in FXM. | - | 112290 | - | Item buckets | ​The Sync operation relocates every item in a bucket​. | 412058 | 95094 | - | Item buckets | Hide second content tree | - | 111647 | - | Item Buckets API | ​Content tree search fails with an error if a context item is not included in an index. | 425362 | 95555 | - | Item Buckets API | ​SearchStringModel.ParseDatasourceString does not respect the sort order​. | 414968 | 95182 | - | Item Buckets API | ​Incorrect values of the boost attributes​ | 395754 | 94306 | - | Item Buckets API | ​Startbar search and Search application are broken if no index includes the root item of the master database.​ | 417437 | 95284 | - | Item Buckets API | ​Application pool culture affects the sitecore_analytics_index​. | 434889 | 96064 | - | Item Buckets Content Search | ​Advanced search in the content tree does not work​. | - | 108397 | - | Item Buckets Content Search | ​The Equals method of the DataUri class has faulty logic​. | 449997 | 96688 | - | Item Buckets Content Search | Selecting the Associated Content dialog doesn't respect the Datasource Template field. | 428783 | 95758 | - | Item Buckets Content Search | ​Search for rendering datasource doesn't search in all Datasource Locations​. | 429935 | 95824 | - | Item Buckets Content Search | ​Wrong description of the GetDatasourceDependencies processor​. | - | 103662 | - | Item Buckets Content Search | ​The usage of the Lucene.Net.Analysis.AR.ArabicAnalyzer class leads to incorrect indexing of the ar-AE language​. | 402185 | 94653 | - | Item Buckets Content Search | ​Items excluded by the inbound filter are not deleted from the index. | 415338 | 95205 | - | Item Buckets Content Search | ​TheWeb edit ribbon is broken if no index includes the root item of the master database​. | 417434 | 95283 | - | Item Buckets Content Search | ​The location search type prevents the running of the getGlobalSearchFilters pipeline.​ | 405528 | 94831 | - | Item Buckets Content Search | ​The incorrect language version is displayed when the search result is opened in a new Content Editor window​. | 422018 | 95425 | - | Item Buckets Content Search | Items are not indexed if index has two crawlers | - | 104142 | - | Launchpad | ​The login page ignores the RedirectUrl parameter after authenticating the user and redirects all users to the ​Launchpad. | 432834, 425607, 432834, 433848 | 53027 | - | List Manager | ​The default index configuration is incorrect. | - | 112004 | - | List Manager | ​There is an exception in log file when you add a list from a file with Solr. | - | 108653 | - | List Manager | ​List Manager doesn't respect access rights on list items. | - | 81008 | - | List Manager | ​JavaScript code can be submitted and executed in the List Manager application. | - | 80139 | - | List Manager | ​Count is not shown for segmented lists on the Dashboard page. | - | 102830 | - | List Manager | Cannot create list from file if Media.CachingEnabled = false. | - | 103637 | - | List Manager | ​Lists with quotes in the name cannot be opened. | - | 98464 | - | Miscellaneous | ​EventQueue AddCriteria and GetEventTypeConditions methods build an incorrect sql query clause​. | 112951 | - | - | MVC | ​System.Web.WebPages.Html.HtmlHelper errors appear during Sitecore compilation by Aspnet_compiler.exe.​ | - | 65207 | - | MVC | ​Sitecore CMS exposes information that can lead to server fingerprinting​. | - | 106300 | - | MVC | Support for async controllers (does not apply to Controller Renderings) | 463539, 437904 | 55908 | - | Path Analyzer | Fatal messages related to ApplicationContainer may appear in the log during startup due to an expected initialization order. | 458250 | 99665 | - | Pipelines | ​Find Best Match logic of Item Resolver may return incorrect items​. | - | 110672 | - | Platform | ​​When responding to a search request, the Item Web API ignores field values stored in base templates.​​​​ | 441481 | 64610 | - | Platform | ​The General Link dialog inappropiately encodes​ the contents of the Query String property. | 439119 | 82835 | - | Platform | ​[Debug mode] Some assemblies are built in debug mode​. | - | 108138 | - | Platform | ​Item resolver works incorrectly if url/path contains an underscore.​ | - | 103063 | - | Platform | The Select Item dialog is unusable. | 417731 | 95297 | - | Rich Text Editor | ​Text fields become unresponsive after RTE closing​. | 405330 | 94824 | - | Sitecore Services Client | ​Sitecore.Services.Client prevents using Attribute Routing with ASP.NET WebAPI​. | 431698 | 59317 | - | Sitecore.ContentSearch | ​Lucene: Obsolete 'Sitecore.Search' API must be disabled in version 7.2, 8.0 and 8.1.​ | - | 97745 | - | Social Connected | The Twitter Share button goal is not triggered by an event. | - | 72582 | - | Social Connected | ​Facebook Social connector doesn't work with Facebook API v2.5 (last version) for newly registered applications. | - | 78926 | - | Social Connected | ​Unable to post to Facebook pages. | - | 87047 | - | Social Connected | ​Social jobs are not started due to library absence. | - | 82884 | - | Social Connected | ​Second "Login" into the system via social networks produce the "NullReference" exeption. | - | 103883 | - | Social Connected | ​Not possible to add a Facebook account when using Facebook API 2.4; "Invalid Scopes: read_stream" error message is shown. | - | 67975 | - | Social Connected | Facebook ​Like and Share buttons are not triggered by an event. | - | 103791 | - | Social Connected | ​The LinkedIn Share button is not triggered by an event. | - | 103326 | - | Social Connected | ​The Google +1 button is not triggered by an event. | - | 106418 | - | Social Connected | ​Possible NullReferenceException in ConnectorClientManage. | - | 68917 | - | Solr | ​Automatic type conversion for IEnumerable``​ | 401515 | 94608 | - | Solr | ​Two or more negative clauses in a query cause an empty result​. | 398622 | 94448 | - | Solr | ​Optimize command timeout prevents swapping cores of SwitchOnRebuild index​. | 405677 | 94842 | - | Solr | ​Search limits results by _language filter query when the client language differs from the default language​. | 426036 | 95597 | - | Solr | ​TheSolr SwitchOnRebuild mechanism does not use a swapped index but rather only rebuilds it​. | 442441 | 96429 | - | SPEAK | ​The title bar in some dialogs are not correctly positioned in the Edge browser. | - | 112150, 112634, 112645, 112877, 112894, 74331, 83177 | - | SPEAK | ​After authenticating users, ​the login page ignores the RedirectUrl parameter and instead redirects all users to the ​Launchpad. | 53027 | - | - | SPEAK | ​When responding to a search request, the Item Web API ignores field values stored in base templates.​​​​ | 64610 | - | - | SPEAK | When a user clicks Browse on an Image field that already contains a selected image, Sitecore opens the Media Browser dialog with only the selected image displayed in the list and the dialog does not allow the user to locate other images, which makes it impossible for the user to change the image once selected. | 82830 | - | - | SPEAK | ​The General Link dialog inappropiately encodes the contents of the Query String property. ​ | 82835 | - | - | Update Installation wizard | ​A number of items have been removed from the PathAnalyzerDictionary​. | 456432 | 97037 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Initial_Release/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Initial_Release/index.md deleted file mode 100644 index 3801da744..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Initial_Release/index.md +++ /dev/null @@ -1,77 +0,0 @@ ---- -title: "Sitecore Experience Platform 8.2 Initial Release" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Initial_Release.aspx ---- - -Sitecore 8.2 builds on the core functionality released on the 8.x platform and continues to incorporate feedback we have received from customers, partners, and analysts to strengthen the platform since Sitecore 8.0 was released. Commerce usability and functionality have been improved and additional modules such as Experience Accelerator and Express Migrations have been introduced to help customers speed implementation times and assist with moving to the modern 8.x platform. - -This page contains all the resources for **Sitecore Experience Platform 8.2 rev. 160729 (8.2 Initial Release)**. - -Looking for **a different version**? See [all available versions](/downloads/Sitecore_Experience_Platform). - - - - - -- Note: xDB Cloud support will be released approximately 6 weeks after the release of the Sitecore Experience Platform. - - - - - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore web application installer](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Initial%20Release/Secure/Sitecore%208.2%20rev.%20160729%20(exe).zip) | Choose this link to download the setup.exe (packaged as zip) installation program. This is everything you need to get started. | - | [ZIP archive of the Sitecore site root folder](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Initial%20Release/Secure/Sitecore%208.2%20rev.%20160729.zip) | Choose this link to install Sitecore manually (without the help of the setup.exe installation program). | - | [Oracle databases](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Initial%20Release/Secure/Sitecore%208.2%20rev.%20160729%20(oracle%20dbs).zip) | If you intend to use Oracle for the Core db, please download the following file and check the installation guide for instructions on how to install and configure Oracle. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Initial_Release/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known issues](https://kb.sitecore.net/articles/631685) | Choose this link to access the Sitecore Knowledge Base. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Initial%20Release/Secure/Installation-Guide-SC82.pdf) | The installation procedure for the Sitecore Experience Platform. | - | [Upgrade guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Initial%20Release/Secure/Sitecore-8.2-Upgrade-Guide.pdf) | To upgrade from a previous Sitecore version please follow the instructions in this guide. | - | [Configuration file changes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Initial%20Release/Secure/Sitecore-8.2-Configuration-File-Changes.pdf) | Config file changes in Sitecore Experience Platform 8.2 compared to Sitecore Experience Platform 8.1. | - | [Assembly List](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Initial%20Release/Secure/Sitecore.Platform.Assemblies%208.2%20rev.%20160729.txt) | Complete list of assemblies shipped with this release. | - -## Modules - - | Resource | Description | - | --- | --- | - | [Web Forms For Marketers 8.2](/downloads/Web_Forms_For_Marketers/82/Web_Forms_For_Marketers_82_Initial_Version) | Download files and release information for Web Forms for Marketers 8.2 (Initial Release). | - -## Upgrade options - - | Resource | Description | - | --- | --- | - | [The Sitecore Update Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Initial%20Release/Secure/Sitecore%208.2%20rev.%20160729%20(update%20package).zip) | Download the files that you need for the upgrade process. | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Initial%20Release/Secure/Sitecore%208.2%20rev.%20160729%20(config%20files).zip) | Download this package if you need only web.config and App_config files. | - | [Sitecore Update Installation Wizard](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Initial%20Release/Secure/Sitecore%20Update%20Installation%20Wizard%201.1.0%20rev.%20160717.zip) | The Update Installation Wizard allows developers to update existing Sitecore Experience Platform using Sitecore update packages. | - | [Express Migration Tool](/downloads/Express_Migration_Tool/10/Express_Migration_Tool_10_Initial_Release) | The Sitecore Express Migration Tool makes it easy for customers to help migrate older instances to the latest version of Sitecore Experience Platform without the need to gradually upgrade from version to version.
The initial release supports migration of any version of Sitecore 7.2 to the initial release of the Sitecore Experience Platform 8.2 | - -## Additional Tools - - | Resource | Description | - | --- | --- | - | [Solr support package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Initial%20Release/Secure/Sitecore.Solr.Support%202.0.0%20rev.%20160726.zip) | Solr is the popular, open source enterprise search platform. Download this package if you want to use Solr on your instance. Note! Solr is optional in Sitecore 8.2. | - -## Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Initial%20Release/Secure/Sitecore%208.2%20rev.%20160729%20(da-DK).zip) | Danish language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Initial%20Release/Secure/Sitecore%208.2%20rev.%20160729%20(de-DE).zip) | German language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Initial%20Release/Secure/Sitecore%208.2%20rev.%20160729%20(ja-JP).zip) | Japanese language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - -## Usage policies - - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services Usage Policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation Usage Policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - | [Sitecore xDB Cloud Usage Policy](/downloads/Sitecore_Experience_Platform/Sitecore_xDB_Cloud_Usage_Policy) | This policy is applicable if you are using Sitecore xDB Cloud. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update1/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update1/Release_Notes.md deleted file mode 100644 index 7745705c0..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update1/Release_Notes.md +++ /dev/null @@ -1,227 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update1/Release_Notes ---- - -**November 2016 – released Sitecore Experience Platform 8.2 Update-1 (rev. 161115)** - -This is a product update. Sitecore recommends that you upgrade to this release if it includes fixes that meet the specific needs of your organization. If this release does not include new functionality or specific fixes that your organization requires, you may benefit from waiting to upgrade until Sitecore releases an update that is relevant for your organization. This is especially true in production environments. - -## Highlights - -Sitecore 8.2 update-1 supports a full Azure PaaS deployment and the release comes with out of the box support for: - -- Azure Web Apps for hosting your Sitecore site -- Application Insights for health monitoring -- Redis Cache for session state -- Azure Search for search engine support -- Azure SQL for databases - -## New features/improvements - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - | Caching | Sitecore now includes a new Session State Provider for Redis Cache, which adds to the already existing options of In-Memory, SQL Server, and MongoDB. This provider works with on-premise or Azure Redis Cache implementations. | | | - | Configuration | The Port attribute is now taken into account when links are generated, enabling the configuration of environments with translation ports​​. | | 93672, 384752 | - | Content Editor | The Content Editor language selectornow contains the country reference. | | 95987, 433109 | - | Content Editor | Aliases are now supported for media items. | | 91259, 332149 | - | Content Editor | XHtml validation of HTML5 tags has been introduced. | | 92086, 353612 | - | DataProvider MSSQL | Azure SQL is now supported as a storage for Sitecore databases. | | 118635 | - | Experience Analytics | Because marketing definitions must be deployed for Experience Analytics to aggregate data and display reports, warning messages have been added to the log to ensure that you can see that marketing taxonomy definions have not been deployed. | | 123393 | - | Experience Optimization | You can now select several versions of the same page in a page test. | 443279, 450913 | 80010 | - | Experience Optimization | It is now possible to select the language of a test page when you create a test in the Experience Optimization application. | 466747, 457627, 470569, 464710, 464191 | 98532 | - | Experience Profile | The latest visitors list on the dashboard now dynamically loads contacts as you scroll. | 438995, 438823, 441771, 449278, 460198, 462624, 467185, 478824 | 60021 | - | Installation | This release is the first Sitecore release to support deployment on Azure Web Apps. Deployment into Azure Web Apps is supported using the new pre-built Web Deploy packages and ARM templates. | | | - | Installation | Support for Azure SQL, which can now be set up using DACPAC packages found in the Databases folder of a Sitecore installation. | | | - | List Manager | Search performance has been improved by increasing the efficiency of retrieving the list count via the LINQ to SOLR provider. | | 119389 | - | List Manager | A new method has been added to export custom fields via CSV from the List Manager. | | 98840 | - | List Manager | Segmented Lists have been extended to show contacts with empty email addresses. | | 110294 | - | List Manager | The segmentation logic has been updated to improve the accuracy of Segmented List counts. | | 59582 | - | List Manager | UI messaging and logging when the List Manager csv fails to import has been added. | | 124629 | - | MVC | Rendering error handling has been improved and can be configured using custom IRendererErrorStrategy implementations​​ for handling errors. | | 88801 | - | Path Analyzer | Funnels have been added to favorites for a particular map and you can now see them on the Dashboard view. | | 103151 | - | Platform | Sitecore now includes support for Azure Application Insights. When you deploy Sitecore into Azure Web Apps using the new Web Deploy packages, this integration is enabled by default and immediately starts channeling all Sitecore logs and performance counters into Application Insights. | | | - | Sitecore Services Client | Sitecore Services OData controllers now support read/write. | | 121662 | - | Sitecore Services Client | EDM configuration has been simplified with an extendable fluid EDM builder API. | | 121663 | - | Sitecore.ContentSearch | Sitecore now ships with a search provider for Azure Search which can be used with Content Search and Contact Segmentation Indexes. This adds to the existing search engine options of Lucene, Solr, and Coveo. When deploying into Azure using the new Web Deploy packages, the Azure Search provider is activated by default. | | | - | SPEAK | The ListControl DetailView column definition now supports the EmptyText property, which defines the text to show when the corresponding field in a row has no value. | | 125649 | - | Update Installation wizard | Update Installation Wizard was significantly improved. Following features were introduced:1) Ability to update files and items independently2) Auto-upgrade of the configuration. During the upgrade the custom configuration would be detected and moved to individual include files. The Sitecore configuration would be automatically updated.3) Ability to modify created include files with custom configuration during update4) Upgrade installation performance was dramatically improved. | | 96792, 452215 | - | Workflows | Workflow comments are now supported on the Submit Selected and Submit All dialogs. | | 91794, 345263 | - -## Resolved issues - -The following issues have been fixed: - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - - | API | The Item.DisplayName properties call the dbo.aspnet_Users table in the Core database. | | ​109832 | - | API | The anchor and query in the link to the page are in the incorrect order. | | 96095, 435422 | - | API | The wrong number of users is shown when you log in with a boosted license. | | 96971, 455433 | - | API | Using Text.Translate during Sitecore initialization slows down the Sitecore load. | | 117129 | - | API | During initialization, Sitecore loads the country culture associated with the User Profile and this affects performance negatively.​ | | 117116 | - | API | The RemoveVersions method for a DataProvider class throws an exception when null is returned by calling the GetItemVersions method from the custom data provider. | | ​95894, 431369 | - | Caching | The DeviceItemCache and RuleCache item:saved:remote handlers force newly saved items to be loaded unnecessarily. | | 96472, 443280 | - | Caching | The Caching enabled setting doesn't work. | | 92931, 372655 | - | Caching | The ContentSearchManager.Locator getter does not seem to be thread safe. | | 95460, 423098 | - | Content Editor | The icon and item displayname are always editable. | | 89955, 305870 | - | Content Editor | Control-click calls the browser context menu instead of the Sitecore menu. | | 108411 | - | Content Editor | Data is lost when you save from the Name Value list. | | 115027 | - | Content Editor | Item write access is required to render the Content Editor gutters. | | 117525 | - | Content Editor | The UIUtil.GetApplicationFromShortcut method cannot work with links that are inserted using Internal Link dialog. | | 93306, 378169 | - | Content Editor | Line breaks disappear for multiline text fields. | | 93260, 377374 | - | Content Editor | The Notification Manager stores the wrong value for item clones. | | 119386 | - | Content Editor | The __Source Item field validator and the __Source field validator throw an exception when validating an item that has with no current language versionspecified. | | 116595 | - | Content Editor | ​The red bar does not appear to the left of fields being validated. | | 96721, 450684 | - | Content Editor | ​WebDAV INFO messages still are being written to the logs even when the WebDAV.Enabled setting is set to false. | | 118232 | - | Experience Analytics | Translation: Resources in the App_GlobalResources Website folder cause issues in the display of country-releated reports in Experience Analytics. | 452108, 450552, 471459 | 82101 | - | Experience Analytics | Translation: Country labels are not translated correctly. | | 113998 | - | Experience Analytics | A dimension with a specific page filter "Where the specifc page has been visisted within the current visit" throws exception during aggregation. | | 123660 | - | Experience Analytics | Azure Web Apps support: reaggregation failed due to two running completion agents , on a distributed environment using Redis Cache as the session state provider. | | 126412 | - | Experience Analytics | There are duplicate experienceAnalytics/aggregation nodes on the showconfig.aspx page. | | | - | Experience Analytics | Translation: On unavailable Device models reports, the Unavailable label is not translated. | | 114007 | - | Experience Editor | Saving changes causes a Null reference exception when the Enforce Version Presence feature is enabled on an item. | 464427, 460841, 465311 | 107453 | - | Experience Editor | You cannot select Associated Content if the datasource for the rendering is invalid. | 470254, 452083, 451642 | 78356 | - | Experience Editor | The drop-down list of items in the Navigation bar has no scroll bar. | 462895, 457068, 465073, 459683, 465512, 456607, 458225, 456829, 468130, 455682, 468710 | 85083 | - | Experience Editor | The Experience Editor incorrectly resolves the context site after switching languages in a multi-site environment. | 466285, 456630, 466386, 454965 | 86006 | - | Experience Editor | TheInsert link dialog does not open if there is a & charachterin the querystring of the General Link field. | 469788, 458698, 461291, 471609, 466528, 457304, 456531, 469937, 466371, 464701, 469218, 463172 | 87963 | - | Experience Editor | The hardcoded WEB database definition in the GetControlState method causes an exception if the configuration of the database is absent. | 458194, 468983, 471657, 457817, 458380 | 98798 | - | Experience Editor | The workflow state does not change if there are unsaved changes in a document. | 463056 | 110367 | - | Experience Editor | The unnecessary popup, "are you sure you want to leave", appears after you save an item after you have changed the workflow state. | 463056 | 110373 | - | Experience Editor | A NullReferenceException happens in the Experience Editor if certain security permissions are set up for the placeholder settings. | 462825 | 110924 | - | Experience Editor | On MVC sites, Explore mode always redirects to the Home page in the Experience Editor instead of the current page. | | 116644 | - | Experience Editor | It is impossible to edit or design pages in the Experience Editor after you return from Explore mode on MVC-enabled sites. | | 117587 | - | Experience Editor | On certain multisite configurations, the Experience Editor throws an error when changing the preview date. | 470756 | 126488 | - | Experience Optimization | Content Testing causes an exception in the Experience Editor ribbon if the enforceVersionPresence attribute is set to true. | 462255, 462769, 462222, 463285 | 108311 | - | Experience Optimization | Multiple changes are needed to improve multi-language support. | 453814, 454423, 456640, 460479, 458772, 458774, 462058, 456392, 456580, 459893, 471524, 467509, 456655 | 83387, 88040, 97183, 98206, 98225 | - | Experience Optimization | An internal server error appears after you open the Page Level test dialog several times. | 470378, 470508 | 126066 | - | Experience Profile | The `An error has occurred` message appears when searching for contacts that do not have visits registered in the Experience Profile​​. | | 74085 | - | Federated Experience Manager (FXM) | ​FXM handles the "for in" constructions in javascript incorrectly. | 464329 | 121398 | - | Federated Experience Manager (FXM) | FXM ignores the external site's port number | 451473, 452447,457448 | 77976, 452447,457448 | - | Federated Experience Manager (FXM) | Unwanted JavaScript code can be executed in the FXM application. | 453145 | 80141 | - | Federated Experience Manager (FXM) | A placeholder with the position property set to after is not rendered on an external site if the element is the last child of its parent node. | 452459 | 81791 | - | Federated Experience Manager (FXM) | FXM loads external site scripts several times when you insert multiple placeholders. | 452898 | 83803 | - | Federated Experience Manager (FXM) | FXM cannot track page visits if the external site URL contains 'page' or 'url' in the query string parameters. | 459074 | 101816 | - | Federated Experience Manager (FXM) | Links on an external site always lead to the home page when opening an external ssl-only site in the Experience Editor. | 461053 | 105842 | - | Federated Experience Manager (FXM) | FXM does not properly process domain matcher rules if they contain a rule without any conditions. | 461650 | 108264 | - | Federated Experience Manager (FXM) | Installing EXM 3.3 breaks the FXM application. | 468467, 468611, 465092, 468611 | 119569 | - | Federated Experience Manager (FXM) | Javascript errors appear in FXM when you add a placeholder to some single-page application sites. | 464329 | 121398 | - | Installation | Installing a template where the Shared setting has been modified can cause database corruption. | | 90254, 310642 | - | Installation | You cannot install a package if it contains an item that has a query string as its source property. | | 119608 | - | Item buckets | The Save dialog box appears when you add several bucketable items to a bucket. | | 104178, 125313, 119704 | - | Item buckets | There is unexpected behavior when you add an item to an existing bucket node. | | 119704 | - | Item Buckets Content Search | Sitecore displays a connection error during loading if the Solr server is not available. | | 94024, 391039 | - | Item Buckets Content Search | ​The BaseAsynchronousStrategy retrieves a value by using its key instead of enumerating the entire sequence.​ | | 97025, 456221 | - | Item Buckets Content Search | The search index only uses the first crawler that is assigned to it and ignores any other crawlers. | | 108165 | - | Item Buckets Content Search | Language Fallback can cause incorrect field values to be indexed when the index is rebuilt. | | 104145 | - | Item Buckets Content Search | Content languages can affect the OnPublishEndAsync indexing strategy. | | 107730 | - | Item Buckets Content Search | Sometimes the index is not updated when shared fields are changed. | | 107856 | - | Item Buckets Content Search | Indexes are not updated after an item is restored from the Recycle Bin. | | 116165 | - | Item Buckets Content Search | Strategies can flood the IndexPropertyStore with last_updated_timestamp requests. | | 117459 | - | Item Buckets Content Search | Reindexing consumes too many resources in some cases. | | 109719 | - | Language fallback | Wrong field value is resolved when using fallback fields and unclone functionality. | | 99542 | - | Language fallback | Installing a package creates item versions for all fallback languages. | | 103362 | - | Language fallback | Language fallback creates unnecessary language versions using Copy to and Duplicate options for items not in the initial workflow state. | | 107642 | - | Language fallback | Installing a Sitecore Package with a version in the fallback language creates unnecessary duplicated versions. | | 109464 | - | Language fallback | The Unlock and UnlockAll commands create new item versions. | | 120257 | - | Language fallback | The wrong field value is resolved when you use the language fallback and unclone functionality. | | 99542 | - | Language fallback | The fallback label for fields is displayed if you enable field-level fallback and there are no values. | | 104047 | - | Language fallback | The final layout does not have a language fallback field. | | 105306 | - | Language fallback | The dictionary entry shows the incorrect translated values for items with Language Fallback enabled. | | 106268 | - | Language fallback | ​Token replacement does not work for languages with Language Fallback enabled. | | 116885 | - | Layouts & renderings | Delta xml layouts can cause an incorrect sublayout order. | | 95158, 414405 | - | Layouts & renderings | The Copy To dialog ignores the item language when you copy the final layout. | | 107731 | - | Layouts & renderings | There is an incorrect Help link in the Schedule template. | | 114617 | - | Layouts & renderings | The attributes in the FieldRenderer control are not used during item rendering. | | 90242, 310360 | - | Links | The Broken Links report leads to the wrong item version when you click the item link. | | 92609, 366084 | - | Links | An extra slash in the rootPath parameter of the site definition can cause an error. | | 94471, 399016 | - | Links | There are excessive operations in theSqlServerLinkDatabase.BatchCompact method. | | 105831 | - | List Manager | When you log in as an admin user, the My lists page doesn't display the lists that you have created. | | 43365 | - | List Manager | In the Import wizard, you can click on the tab header and skip to the next step without mapping import fields. | | 114120 | - | List Manager | You can cause security issues by replacing a list owner with a non-Sitecore user. | | 114055 | - | List Manager | The identification level is not set for contacts that are imported using the List Manager. | | 84176 | - | List Manager | A list can be moved outside the All lists folder by changing the Destination property. | | 1140565 | - | List Manager | Search fields aren't limited by max length. | | 114062 | - | List Manager | The Create and add new contact form allows you to upload contacts with all unlimited size of email, last and first name, leading to hanging of list processing. | | 114060 | - | List Manager | The Create and add new contact form allows you to upload contacts with without filling in any of the fields, potentially leading to securtity issues. | | 114059 | - | List Manager | The List Manager Task Page sends two identical HTTP requests to get contacts and this impacts performance. | | 74285 | - | Login | Users can log in to Sitecore with spaces at the end of their user name. | | 90599, 318159 | - | Login | The Login.DisableAutoComplete setting is not considered when the the Login pageis initialized. | | 119950 | - | Login | ​The User.RuntimeSettings setting of a Virtual User conflicts with the custom data in the FormsAuthenticationTicket.UserData​ setting. | | 107294 | - | Media | Unnecessary database calls cause the GetMediaURL method to be overwritten. | | 95048, 410427 | - | Media | The Keep Aspect Ratio is disabled in the Image Properties dialog. | | 110496 | - | Media | The Download file name is garbled when it contains non-ASCII characters. | | 96081, 435277 | - | Miscellaneous | A nolayout page is returned instead of the noaccess page. | | 90940, 325160 | - | Miscellaneous | There is no text available for the unlock command for non-English languages. | | 119818 | - | Miscellaneous | Multilist paging and search generates a non-RFC 1738 compliant URL. | | 104367 | - | Miscellaneous | The Update Installation wizard throws an exceptionin some cases. | | 115007 | - | Miscellaneous | The Item owner is always sitecore\admin. | | 129833 | - | Miscellaneous | HTML entities in RSSare broken in some browsers. | | 92190, 355852 | - | Miscellaneous | ​There is a MainUtil.SendMail resource leak​. | | 102608 | - | Miscellaneous | ​The Business name value is used instead of the Contact name in web form reports​. | | 75908 | - | Multibrowser fixes | Sitecore breaks Internet Explorer's implementation of streaming mp4 videos with HTML5 | | 95191, 415156 | - | Multibrowser fixes | The Browser console is flooded with errors. | | 120395 | - | MVC | The Layout file path is not resolved correctly. | 452136, 455540, 451632 | 96789 | - | MVC | External aliases do not work. | 455672, 455557, 456466, 457985, 459142, 459484, 462932, 463476, 463992, 464437, 464679, 467090, 471534, 472142 | 96995 | - | MVC | The default MVC Layout file doesn't contain XML schema information. | | 105581 | - | MVC | Sitecore MVC IAssemblyResolver resolves too many assemblies. | | 109276 | - | MVC | Rendering statistics are not collected for pages that use MVC. | | 94421, 398176 | - | Path Analyzer | No contacts are displayed when the Group map data setting is enabled. | | 122558 | - | Path Analyzer | The Download as CSV function causes issues with the Radial view, and this causes an Error message to be displayed. | | 119848 | - | Path Analyzer | Log files contain WARN messages for the CD role in a distributed environment. | | 117453 | - | Path Analyzer | Enabling GenericCache for Tree Map views causes tree requests to load slowly. | | 115145 | - | Path Analyzer | The Help icon next to a funnel name does not open the Help dialog from the Funnels tab. | | 117820 | - | Path Analyzer | Processors in the Processor DeletePathAnalyzerItems (used in the pipeline UIDeleteItems) execute with an exception in the log. | | 122304 | - | Path Analyzer | Maps are double-grouped due to a cache error. | | 123741 | - | Path Analyzer | Help pages in non-Ennglish languages are blank. | | 122307 | - | Path Analyzer | The help page is blank if requested by an anonymous user. | | 116121 | - | Path Analyzer | Outcome names are not resolved from the corresponding outcome definitions (using the default node name resolution setting). | | 117436 | - | Path Analyzer | The context pane closes on an empty area click. | 125316 | | - | Path Analyzer | TheBar Chart tooltip always shows a template unavailable notification. | | 124458 | - | Path Analyzer | The root node of Reverse Goal maps are incorrectly renamed to Internet when the Group map data setting is enabled. | | 118082 | - | Path Analyzer | The Context Pane does not scroll within its tabs. | | 113984 | - | Path Analyzer | The cursor displays incorrectly when you hover over thecheckboxes on the Settings screen. | | 123742 | - | Path Analyzer | The Create your first funnel button does not indicate that a new window will appear. | | 116695 | - | Path Analyzer | TheTable layout rendering is slow to display when large 3.5K path datasets are used (Experience Map with Goals). | | 113636 | - | Path Analyzer | The Path Analyzer UI and Help texts do not fully support German(Tier-1 language). | | 115124 | - | Pipelines | The Authentication.SaveRawUrl setting does not work for media requests. | | 92159, 355047 | - | Pipelines | The ItemResolver processor in the HttpRequestBegin pipeline returns different results for the same item. | | 95203, 415304 | - | Pipelines | The SiteResolver class fetches the wrong website for regional domains. | | 92699, 368324 | - | Pipelines | ​The SiteResolver class does not work with wildcard characters in the hostName attribute of a site section​. | | 94338, 396181 | - | Pipelines | ​Checkbox values get erased when you navigate from an item with unsaved changes​. | | 107694 | - | Platform | ​The Media Browser only shows the selected imagerather than all images, which is required to​ enable the user to change an image when opening an image field that is populated. | 414946 | 82830 | - | Rich Text Editor | The Edit Html feature does not workin some cases. | | 93614, 383922 | - | Rich Text Editor | You cannot add CSS classes to the image property dialog. | | 95547, 425160 | - | Rich Text Editor | The Insert Bucket Link button in the Rich Text Editor doesn't work. | | 107388 | - | Security API | There is an error on the Launchpad when you log out after using the Search field in the User Manager. | | 96679, 449798 | - | Security API | There are security vulnerabilities. | | 109420, 110904 | - | Serialization | ​The is an item serialization exception when the full item path (\{database name\}/\{item path\}) length is 150 or more. | | 90479, 315522 | - | Sitecore Services Client | EDM configuration has been simplified with an extendable fluid EDM builder API. | | 121663 | - | Sitecore Services Client | The desc attributes are missing on assembly filter nodes. | | 125207 | - | Social Connected | When you post a manual message, the server returns a 500 error. | | 117922 | - | Solr | Search limits results by the _language filter query when the client language differs from the default language. | | 95597, 426036 | - | Solr | Fallback versions are not indexed when Language Fallback is enabled. | | 118246 | - | Solr | The Solr ingtegration is unstable if the connection to Solr is unavailable during Sitecore initialization. | | 121040 | - | Solr | ​Searching using quotations does not work as expected​. | | 121328 | - | SPEAK | The Message control fails to provide tooltips for messages, making it difficult to read very long messages. | | 122877 | - | SPEAK | SPEAK fails to resolve the "Target" value of an "internal link" field in the Content Editor dialog, which results in Sitecore ignoring the value provided by the user. | 406359 | 115278 | - | SPEAK | The SPEAK components CSS file contains an inappropriate reference to CSS maps, which raises a JavaScript error when you open the Publish wizard. | | 116755 | - | SPEAK | The ListControl raises an error if a date column attempts to display a row with a null value for the date. | | 117813 | - | SPEAK | The MessageBar does not sort messages by type. | | 113796 | - | SPEAK | The Line chart fails to show values on the X-axis if the chart displays only a single value. | | 121466 | - | SPEAK | The DialogHeader.Title wraps long text strings even when there is enough space for the text. | | 114112 | - | SPEAK | An authenticated user does not get redirected to the login page when the session expires. | 469304 | 124934 | - | SPEAK | The Uploader API returns a successful status code, even when upload fails. | | 124625 | - | SPEAK | The ActionControl does not open when displayed in Internet Explorer 11. | | 101684 | - | SPEAK applications | The Select Sitecore Item dialog doesn’t select an item based on the Internal Link field value. | | 94623, 401636 | - | SPEAK applications | The Insert Internal Link dialog does not allow you to specify the attributes for the link. | | 94908, 407189 | - | SPEAK applications | The SPEAK Insert link dialog doesn't preselect the item if the source is specified. | | 95226, 415686 | - | SPEAK applications | The Insert Link dialog from the General Link field shows an empty window target. | | 95434, 422229 | - | SPEAK applications | The Target attribute in the General Link field isn't preselected. | | 96379, 441249 | - | SPEAK applications | The SPEAK Insert Link dialog does not respect the content language. | | 96423, 442383 | - | Update Installation wizard | The Process.bat file has a virtual drive as the source path. | | 95276, 417237 | - | Update Installation wizard | The Update Installation wizard does not show the real source of the error when a package contains two items with same IDs. | | 123970 | - | Update Installation wizard | The following error appears in the log file during an upgrade: "...Could not load file or assembly 'MethodTimer, Version=1.15.10.0..". | | 115074 | - | Workbox | ​The Diff dialog in the Workbox ignores the Field Read access right​s. | | 102007 | - | Workflows | Workflow commands in the gutter are executable even if the item is locked by another user. | | 116178 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update1/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update1/index.md deleted file mode 100644 index dd6a14005..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update1/index.md +++ /dev/null @@ -1,88 +0,0 @@ ---- -title: "Sitecore Experience Platform 8.2 Update-1" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update1.aspx ---- - -Sitecore 8.2 builds on the core functionality released on the 8.x platform and continues to incorporate feedback we have received from customers, partners, and analysts to strengthen the platform since Sitecore 8.0 was released. Commerce usability and functionality have been improved and additional modules such as Experience Accelerator and Express Migrations have been introduced to help customers speed implementation times and assist with moving to the modern 8.x platform. - -Sitecore 8.2 Update-1 supports a full Azure PaaS deployment and the release comes with out of the box support for: - -- Azure Web Apps for hosting your Sitecore site -- Application Insights for health monitoring -- Redis Cache for session state -- Azure Search for search engine support -- Azure SQL for databases - -This page contains all the resources for **Sitecore Experience Platform 8.2 rev. 161115 (8.2 Update-1)**. - -Looking for **a different version**? See [all available versions](/downloads/Sitecore_Experience_Platform). - - - - - -- Note: xDB Cloud support will be released approximately 6 weeks after the release of the Sitecore Experience Platform. - - - - - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore web application installer](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update1/Secure/Sitecore%208.2%20rev.%20161115%20(exe).zip) | Choose this link to download the setup.exe (packaged as zip) installation program. This is everything you need to get started. | - | [ZIP archive of the Sitecore site root folder](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update1/Secure/Sitecore%208.2%20rev.%20161115.zip) | Choose this link to install Sitecore manually (without the help of the setup.exe installation program). | - | [Oracle databases](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update1/Secure/Sitecore%208.2%20rev.%20161115%20(oracle%20dbs).zip) | If you intend to use Oracle for the Core db, please download the following file and check the installation guide for instructions on how to install and configure Oracle. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Packages for XP0 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update1/Secure/Sitecore%208.2%20rev.%20161115%20(WDP%20XP0%20package).zip) | WebDeploy package for XP0 / Single Instance configuration. | - | [Packages for XP/XP1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update1/Secure/Sitecore%208.2%20rev.%20161115%20(WDP%20XP1%20packages).zip) | Packages for XP1 configuration with four dedicated roles: CM, CD, Processing, Reporting. | - | [Packages for XM/XM1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update1/Secure/Sitecore%208.2%20rev.%20161115%20(WDP%20XM1%20packages).zip) | Packages for XM1 configuration with two roles: CM, CD. These packages are configured in CMS-only mode. | - | [Packages for XDB1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update1/Secure/Sitecore%208.2%20rev.%20161115%20(WDP%20XDB1%20packages).zip) | Packages for XDB1 configuration with two dedicated roles: Processing and Reporting. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update1/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known issues](https://kb.sitecore.net/articles/631685) | Choose this link to access the Sitecore Knowledge Base. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update1/Secure/Installation-Guide-SC82-Update-1.pdf) | The installation procedure for the Sitecore Experience Platform. | - | [Upgrade guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update1/Secure/Sitecore-8.2-Update-1-Upgrade-Guide.pdf) | To upgrade from a previous Sitecore version please follow the instructions in this guide. | - | [Configuration file changes](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update1/Secure/Sitecore-8.2-Update-1-Configuration-File-Changes.pdf) | Config file changes in Sitecore Experience Platform 8.2 Update-1 compared to Sitecore Experience Platform 8.2 Initial Release.
You may need this document when you migrate you instances using the Express Migration Tool. | - | [Assembly List](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update1/Secure/Sitecore.Platform.Assemblies%208.2%20rev.%20161115.txt) | Complete list of assemblies shipped with this release. | - -## Modules - - | Resource | Description | - | --- | --- | - | [Web Forms For Marketers 8.2](/downloads/Web_Forms_For_Marketers/82/Web_Forms_For_Marketers_82_Update1) | Download files and release information for Web Forms for Marketers 8.2 (Update-1). | - -## Upgrade options - - | Resource | Description | - | --- | --- | - | [The Sitecore Update Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update1/Secure/Sitecore%208.2%20rev.%20161115%20(update%20package).zip) | Download the files that you need for the upgrade process. | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update1/Secure/Sitecore%208.2%20rev.%20161115%20(config%20files).zip) | Download this package if you need only web.config and App_config files. | - | [Sitecore Update Installation Wizard](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update1/Secure/Sitecore%20Update%20Installation%20Wizard%202.0.0%20rev.%20161109.zip) | The Update Installation Wizard allows developers to update existing Sitecore Experience Platform using Sitecore update packages. | - | [Express Migration Tool](/downloads/Express_Migration_Tool/20/Express_Migration_Tool_20_Initial_Release) | The Sitecore Express Migration Tool makes it easy for customers to help migrate older instances to the latest version of Sitecore Experience Platform without the need to gradually upgrade from version to version.
The Express Migration Tool 2.0 supports migration of  Sitecore 6.6 and Sitecore 7.2 to the Sitecore Experience Platform 8.2 Update-1. | - -## Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update1/Secure/Sitecore%208.2%20rev.%20161115%20(da-DK).zip) | Danish language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update1/Secure/Sitecore%208.2%20rev.%20161115%20(de-DE).zip) | German language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update1/Secure/Sitecore%208.2%20rev.%20161115%20(ja-JP).zip) | Japanese language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - -## Usage policies - - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services Usage Policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation Usage Policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - | [Sitecore xDB Cloud Usage Policy](/downloads/Sitecore_Experience_Platform/Sitecore_xDB_Cloud_Usage_Policy) | This policy is applicable if you are using Sitecore xDB Cloud. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update2/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update2/Release_Notes.md deleted file mode 100644 index dfb3479ab..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update2/Release_Notes.md +++ /dev/null @@ -1,112 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update2/Release_Notes ---- - -**December 2016 – released Sitecore Experience Platform 8.2 Update-2 (rev. 161221)** - -This is a product update. Sitecore recommends that you upgrade to this release if it includes fixes that meet the specific needs of your organization. If this release does not include new functionality or specific fixes that your organization requires, you may benefit from waiting to upgrade until Sitecore releases an update that is relevant for your organization. This is especially true in production environments. - -## Important changes - -#### Import batching - -The List Manager used to use the Marketing Foundation BulkOperationManager to upload lists of contacts to xDB. The BulkOperationManager uploaded all the contacts as a single set. If the importation process was interrupted, for example if the server restarted, all of the contacts would not be uploaded and the list would be locked. - -Contacts are now uploaded to xDB in batches. - -The highlight of this new implementation are: - -- Default batch size is now 1000 contacts. You can configure this. -- Memory consumption during the importation process has been significantly reduced. -- Import speeds have been improved. -- Import information is now logged. -- You can review the progress of importation and indexing on the list task page. - -#### Disabling the list locking mechanism - -The list locking mechanism ensures that contact lists are uploaded, indexed, and completed before they are available for use, for example, as an email distribution list or as a source for another contact list. The list locking mechanism prevents concurrency issues by ensuring that only one user can edit a list at a time. - -However, there are some scenarios where multiple changes must be made to a list within a short period. For example, during email dispatches, large numbers of list subscriptions and unsubscriptions can occur at the same time. In these cases, list locking is not appropriate. - -We have therefore implemented the ability to disable list locking. - -When you disable list locking, you must be aware that: - -- Disabling list locking can lead to inconsistencies in the number of contacts that are available in a contact list or in an EXM dispatch, versus the number of expected contacts. - This can occur because the contact list is not locked and another user can access the contact list while you are editing it. -- A contact list can be used in EXM immediately after import, even if most of the contacts in the list have not been processed yet. This can result in an email being sent to a smaller audience than was intended. In these scenarios, to ensure that the list count is as expected before proceeding with an EXM dispatch, check the list count in the List Manager. -- Incomplete contact lists are available for use as sources for other lists. This can result in incomplete child lists. - In these scenarios, to ensure that the list count is as expected before proceeding with a new list, check the list count of any source lists in the List Manager. -- Multiple users can edit incomplete contact lists at the same time. If the list sources are edited while the contact associations are being written and indexed, the resulting lists may not match your expectations. - In these scenarios, ensure that your list management processes and user groups are aligned to take into account the potential impact of concurrent editing. - -#### Setting the IdentificationLevel on imported contacts - -When you import contacts, their `IdentificationLevel` is not always set to `known`. When users use a shared device, this can result in incorrect contact merges. - -This only occurs when multiple users use the same device and multiple Sitecore user cookies are present in the same browser. - -**Effect on data:** - -If two contacts, “A” and “B”, are imported into xDB with the List Manager and they then log in to the website from a shared device, these contacts will be merged in xDB. “A” becomes the successor contact to “B”, and “B” loses its contact data. - -This issue is fixed in this update and the contact information about users on shared devices will no longer be merged by mistake. - -## New features/improvements - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - | List Manager | ​Contacts are now uploaded from the List Manager to xDB in batches to improve performance and reduce memory consumption. | 114088 | - | - | List Manager | An option has been added to disable the list locking mechanism if required. | 121177 | - | - | List Manager | A contact's IdentificationLevel is set on import to prevent any incorrect contact merges when contacts use shared devices. | - | 84176 | - | Marketing Foundation | You can now distinguish referrers that come from the same domain. For example, if a visitor to a web page is referred from the same domain as the web page, the "IsSelfReferrer" custom interaction's value is set to true and you can filter that data in reports. | 131171 | - | - | Marketing Foundation | The IndexedContact.LatestVisitDate property is removed from the core analytics index. | 132631, 127650 | - | - | Marketing Foundation | The performance of contact indexing and contact import has been improved when using the ContactBulkUpdateManager. | 132631, 127650 | - | - | Marketing Foundation | ​Minor performance improvements for Interaction aggregation both live and historical.​ | - | - | - | Marketing Foundation | Throttling of the indexing process for sitecore analytics index has been improved and enabled by default.​ | 132631, 127650 | - | - | Marketing Foundation | ​The interval for the sitecore analytics index refresh strategy has been updated to 15 seconds (instead of 1 minute).​ | - | ​ | - | Experience Profile | ​The Experience Profile dashboard now displays a list of top contacts sorted by value per visit instead of by latests visit time.​ | 128950 | - | - -## Resolved issues - -The following issues have been fixed: - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - - | Miscellaneous | Sitecore crashes when there is an unexpected increase in session on SQL Server that is caused by the delete expired session data mechanism being implemented incorrectly.

Note: This issue has been resolved for Sitecore's SQL Server and MongoDB session state providers but persists for Sitecore's Redis session state provider.

| 130338, 470110 | 98800 - | - | Miscellaneous | Setting the RequestValidationMode to 4.5 breaks the Content Editor and the Experience Editor. This setting is required when you use Single Sign On authentification via ADFS. | 473355 | 95457 - | - | Security | Some security vulnerability fixes | - | - | - | Experience Profile | ​The activities and outcome details appear in the wrong position in the timeline. | 131743 | - | - | Experience Profile | The Latest visit date field is removed from the Sitecore analytics index and the dashboard now displays the top contacts sorted by visit value instead of by latest visit date. | 128950 | - | - -## Known issues/ Breaking changes - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - - | Marketing Foundation | Default value of the /sitecore/system/Marketing Control Panel/Outcomes/Product Purchase outcome definition `Monetary Value Applicable` field is set to false by default. This affects applications that depend on the field, for example the Experience Profile. You can use the Marketing Control Panel or the Sitecore.Marketing.Operations API to change the field value after the installation. | - | - | - | Marketing Foundation | Default value of the /sitecore/system/Marketing Control Panel/Outcomes/Contact Acquisition outcome definition `Ignore Additional Registrations` field is set to false by default. It changes how Contact Acquisition outcomes are registered by the Sitecore.Analytics API, that is `Contact Acquisition` outcomes can be registered multiple times. | - | - | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update2/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update2/index.md deleted file mode 100644 index f1a068772..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update2/index.md +++ /dev/null @@ -1,80 +0,0 @@ ---- -title: "Sitecore Experience Platform 8.2 Update-2" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update2.aspx ---- - -Sitecore 8.2 builds on the core functionality released on the 8.x platform and continues to incorporate feedback we have received from customers, partners, and analysts to strengthen the platform since Sitecore 8.0 was released. Commerce usability and functionality have been improved and additional modules such as Experience Accelerator and Express Migrations have been introduced to help customers speed implementation times and assist with moving to the modern 8.x platform. - -This page contains all the resources for **Sitecore Experience Platform 8.2 rev. 161221 (8.2 Update-2)**. - -Looking for **a different version**? See [all available versions](/downloads/Sitecore_Experience_Platform). - -Among other things, this update contains fixes that address issues around uploading contact lists. Please refer to the release notes for further details. - - - - - -- Note: xDB Cloud support will be released approximately 6 weeks after the release of the Sitecore Experience Platform. - - - - - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore web application installer](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update2/Secure/Sitecore%208.2%20rev.%20161221%20(exe).zip) | Choose this link to download the setup.exe (packaged as zip) installation program. This is everything you need to get started. | - | [ZIP archive of the Sitecore site root folder](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update2/Secure/Sitecore%208.2%20rev.%20161221.zip) | Choose this link to install Sitecore manually (without the help of the setup.exe installation program). | - | [Oracle databases](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update2/Secure/Sitecore%208.2%20rev.%20161221%20(oracle%20dbs).zip) | If you intend to use Oracle for the Core db, please download the following file and check the installation guide for instructions on how to install and configure Oracle. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Packages for XP0 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update2/Secure/Sitecore%208.2%20rev.%20161221%20(WDP%20XP0%20package).zip) | WebDeploy package for XP0 / Single Instance configuration. | - | [Packages for XP/XP1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update2/Secure/Sitecore%208.2%20rev.%20161221%20(WDP%20XP1%20packages).zip) | Packages for XP1 configuration with four dedicated roles: CM, CD, Processing, Reporting. | - | [Packages for XM/XM1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update2/Secure/Sitecore%208.2%20rev.%20161221%20(WDP%20XM1%20packages).zip) | Packages for XM1 configuration with two roles: CM, CD. These packages are configured in CMS-only mode. | - | [Packages for XDB1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update2/Secure/Sitecore%208.2%20rev.%20161221%20(WDP%20XDB1%20packages).zip) | Packages for XDB1 configuration with two dedicated roles: Processing and Reporting. | - -## Release Information - - | Resource | Description | - | --- | --- | - | [Release Notes](/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update2/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known issues](https://kb.sitecore.net/articles/631685) | Choose this link to access the Sitecore Knowledge Base. | - | [Installation Guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update2/Secure/Installation-Guide-SC82-Update-2.pdf) | The installation procedure for the Sitecore Experience Platform. | - | [Upgrade guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update2/Secure/Sitecore-8.2-Update-2-Upgrade-Guide.pdf) | To upgrade from a previous Sitecore version please follow the instructions in this guide. | - | [Assembly List](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update2/Secure/Sitecore.Platform.Assemblies%208.2%20rev.%20161221.txt) | Complete list of assemblies shipped with this release. | - -## Modules - - | Resource | Description | - | --- | --- | - | [Web Forms For Marketers 8.2](/downloads/Web_Forms_For_Marketers/82/Web_Forms_For_Marketers_82_Update1) | Download files and release information for Web Forms for Marketers 8.2 (Update-1). | - -## Upgrade options - - | Resource | Description | - | --- | --- | - | [The Sitecore Update Package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update2/Secure/Sitecore%208.2%20rev.%20161221.update.zip) | Download the files that you need for the upgrade process. | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update2/Secure/Sitecore%208.2%20rev.%20161221%20(config%20files).zip) | This package contains configuration files and database scripts for the upgrade. | - | [Sitecore Update Installation Wizard](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update2/Secure/Sitecore%20Update%20Installation%20Wizard%202.0.1%20rev.%20161216.zip) | The Update Installation Wizard allows developers to update existing Sitecore Experience Platform using Sitecore update packages. | - -## Client Translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update2/Secure/Sitecore%208.2%20rev.%20161221%20(da-DK).zip) | Danish language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update2/Secure/Sitecore%208.2%20rev.%20161221%20(de-DE).zip) | German language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update2/Secure/Sitecore%208.2%20rev.%20161221%20(ja-JP).zip) | Japanese language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - -## Usage policies - - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services Usage Policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation Usage Policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - | [Sitecore xDB Cloud Usage Policy](/downloads/Sitecore_Experience_Platform/Sitecore_xDB_Cloud_Usage_Policy) | This policy is applicable if you are using Sitecore xDB Cloud. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update3/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update3/Release_Notes.md deleted file mode 100644 index d6acee5e0..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update3/Release_Notes.md +++ /dev/null @@ -1,132 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update3/Release_Notes ---- - -**April 2017 – released Sitecore Experience Platform 8.2 Update-3 (rev. 170407)** - -This is a product update. Sitecore recommends that you upgrade to this release if it includes fixes that meet the specific needs of your organization. If this release does not include new functionality or specific fixes that your organization requires, you may benefit from waiting to upgrade until Sitecore releases an update that is relevant for your organization. This is especially true in production environments. - -## New features/improvements - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - | Miscellaneous | In the User Manager, you can now search for a user by their email address. | | 90419, 314410 | - | Miscellaneous | The __forceSessionPersist session variable is now optional when Analytics is not being used. | | 95707, 427933 | - | Miscellaneous | The ManagedThreadPool only creates one worker object per request. | | 123013 | - | Miscellaneous | The list of domains is sorted. | | 137300 | - -## Resolved issues - -The following issues have been fixed: - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - | API | Analytics is not tracked when Global.asax does not inherit the Sitecore.Web.Application class. | | 112555 | - | API | The UserOptions.View.UseDisplayName property is applied on low level API. | | 114313 | - | Caching | The FilteredItemsCache is not cleared if CacheKeyIndexing is enabled. | | 138916 | - | Caching | Unnecessary subscription of event handlers to disabled caches. | | 133340 | - | Configuration | Disabling AllowDuplicateItemNamesOnSameLevel causes warnings when you drag & drop an item. | | 104141 | - | Content Editor | Custom folders that inherit the default Media Folder template are not regarded as folders in the Document Manager. | | 95853, 430557 | - | Content Editor | The scrollbar and resizing handle disappear when you minimize the Favorites popup window. | | 127945 | - | Content Editor | A specific language version is shown to users who do not have read access to that language. | | 131445 | - | Content Editor | Sitecore uses deprecated fields in some initial items. | | 90585, 317799 | - | Content Editor | Cloned items that don't have a presentation are published incorrectly. | | 137565 | - | Content Editor | Inefficient retrieval of clones causes poor performance. | | 138038 | - | Content Editor | Using the Insert Options to create an item doesn't add the approrpiate entry to the log file. | | 137983 | - | Content Editor | Exception is thrown while adding the item to Favorites. | | 145214 | - | DataProvider MSSQL | The Sitecore.Data.Sql.SqlUtil.MapType has been updated to use nvarchar(max) instead of ntext. | | 122319 | - | Indexing | To improve performance and optimize indexing, in the Sitecore.ContentSearch.Analytics.config file, we changed the default value of ContentSearch.Analytics.IndexAnonymousContacts setting from `true` to `false`. We also updated the description of this setting to explicitly state that `false` is the new default value. | | 154817 | - | Item buckets | The GetParentBucketItemOrParent method can cause high CPU usage. | | 117834 | - | Item Buckets Content Search | Raising the indexing:propertyset and indexing:propertyget events when the SwitchOnRebuildLuceneIndex index is initialized causes a stack overflow exception. | | 137437 | - | Item Buckets Content Search | Index-updating could be locked when using the onPublishEndAsyncSingleInstance in ParallelIndexing mode. | | 97007, 455965 | - | Item Buckets Content Search | The index update operation depends on item security restrictions and ignores the ContentSearch.Indexing.DisableDatabaseCaches setting. | | 108482 | - | Item Buckets Content Search | The onPublishEndAsyncSingleInstance update strategy should deserialize queued events once instead of N-times for each index. | | 97024, 456220 | - | Item Buckets Content Search | Some item updates might get lost when updating or rebuilding an index because a race condition can occur when updating the LastUpdatedTimestamp. | | 96902, 453882, 96903, 453887 | - | Item Buckets Content Search | Some item updates might be lost during indexing because the caches are outdated. | | 96905, 453890 | - | Item Buckets Content Search | An index is not protected from concurrent updates. | | 97051, 456837 | - | Item Buckets Content Search | The contentSearch.getContextIndex pipeline doesn't resolve the index properly. | | 96771, 451784 | - | Launchpad | In the Recycle Bin, the Launchpad icon is misaligned and the Logout button does not work. | | 116707 | - | Links | Items outside of site root folder are accessible. | | 117109 | - | Login | The Admin login page does not log unsuccessful attempts to log in. | | 139757 | - | Login | A redirection loop occurs between the Login and the Start page if a new user logs in to the Sitecore shell when the maximum allowed user limit has been reached. | | 130279 | - | Login | There is a broken jQuery link on Sitecore login page. | | 139757 | - | Login | The Remember me function on the Sitecore login page doesn't resolve the client language correctly when you reopen the browser. | | 141041 | - | Media | The Media.AutoSetAlt setting overrides the real Alt property. | | 90782, 321435 | - | Media | The "Server cannot append header..." exception occurs when downloading media. | | 95901, 431566 | - | Media | Media files cannot be downloaded when the file name contains spaces and dashes. | | 136841 | - | Media | In the Upload File (Advanced) window, selecting the Overwrite existing media items option breaks the existing media item when the AllowDuplicateItemNamesOnSameLevel setting is disabled. | | 126226 | - | Media | The language parameter (la) is not rendered in a media link that is specified in the General Link field. | | 138035 | - | Miscellaneous | Opening an ActionControl on a page, and then opening another ActionControl on the same page, does not close the first ActionControl, which allows the page to inappropriately have multiple open ActionControls. | | 135240 | - | Miscellaneous | An HTTP protocol violation occurs when downloading files (packages, from File Explorer, etc.). | | 90534, 316777 | - | Miscellaneous | User is redirected to the Sitecore login screen after they log out. | | 94256, 394926 | - | Miscellaneous | Sitecore should only check the size of a media item in the ResizeProcessor if it is an image. | | 93300, 377992 | - | Miscellaneous | When non-admin users search in the content tree, a null reference exception could occur. | | 96901, 453881 | - | Miscellaneous | Rules and script caches are cleared on each item:saved. | | 96007, 433653 | - | Miscellaneous | The `` XSLT control doesn't render the `title` attribute in the output `` tag. | | 90802, 321921 | - | Miscellaneous | The RolesInRolesProvider is inefficient and in some scenarios causes performance issues. | | 96955, 455141 | - | Miscellaneous | Sitecore.MailUtil.SendMail doesn't support SSL. | | 92211, 356359 | - | Miscellaneous | The AllowDuplicateItemNamesOnSameLevel setting does not allow you to save template fields. | | 126862 | - | Miscellaneous | Paging in the Recycle Bin does not work for non-administrator users. | | 127149 | - | Miscellaneous | IncludeTemplatesForDisplay doesn’t work with template IDs. | | 90652, 318887 | - | Miscellaneous | The MediaCreator creates versions in every language of unversioned media items. | | 94414, 398089 | - | Miscellaneous | It is possible to make an item a clone of itself. | | 93492, 382253 | - | Miscellaneous | Non-Admin users can't use the SetDisplayName command when RequireLockBeforeEditing is disabled. | | 116979 | - | Miscellaneous | The disabled attribute for field controls is not needed. | | 134856 | - | Miscellaneous | Using the ref and factory attributes in a pipeline causes an exception. | | 142817 | - | Miscellaneous | A number of methods have inaccurate descriptions. | | 90864, 323303 | - | Miscellaneous | The AllowDuplicateItemNamesOnSameLevel setting prevents you from uploading media items when the OverwriteExisting option is selected. | | 126863 | - | Miscellaneous | The InitializeCounter method creates unecessary objects. | | 136022 | - | Miscellaneous | The Recycle Bin calculates the page count incorrectly for non-admin users. | | 137515 | - | Miscellaneous | The Media custom template folder should display a count of all the items in the folder. | | 139268 | - | Miscellaneous | The IsAdministrator property contains an incorrect casting operation. | | 142416 | - | Miscellaneous | When creating a virtual user, a KeyNotFoundException occurs if the object for the initialized property is not returned. | | 143782 | - | Miscellaneous | The FirstVersionAddedNotification has incorrect action options. | | 137322 | - | Miscellaneous | You can change the workflow state of an item from the ribbon without locking the item. | | 127207 | - | Miscellaneous | If your code uses a 3d party dependencyInjection tool, Sitecore doesn't register it appropriately and this throws an exception. | | 128785 | - | Miscellaneous | The database engine cannot always get an exclusive table lock on tables that are being written to and waits until all the write operations are finished. This can cause a timeout. | | 129456 | - | Miscellaneous | The HealthMonitor overwrites existing log files instead of creating new log files. | | 125593 | - | Miscellaneous | An error in the FileWatcher, causes the Internal buffer to overflow. | | 106211 | - | Miscellaneous | The Global.asax architecture is not optimal. | | 126372 | - | Miscellaneous | An OutOfMemoryException exception can occur when the Sitecore.DependencyInjection.ServiceLocator.ServiceProvider property is called too many times. | | 137518 | - | Miscellaneous | Sitecore can enter a deadlock state if Sitecore.DependencyInjection.ServiceLocator.ServiceProvider property is called too often. | | 151484 | - | Miscellaneous | The Mongo session provider can consume all the connections. | | 143203 | - | Miscellaneous | A NullReferenceException occurs in the Experience Editor. | | 110924 | - | Miscellaneous | CompactClientDataAgent throws an exception in certain situations. | | 137593 | - | Miscellaneous | Lock.Obtain waits forever and doesn't throw an error. | | 92994, 373488 | - | Miscellaneous | The CompactClientDataAgent method can throw a null exception. | | 138194 | - | Miscellaneous | Some hotfixes have been merged into this update. | | 137572, 135364 | - | Performance | The OnItemSaved and OnItemSavedRemote handlers make a call to the [dbo.aspnet_Users] table in the Core database which adds an unnecessary overhead on SQL Server and the Sitecore API. | | 110324 | - | Performance | The Sitecore.Pipelines.HttpRequest.BeginDiagnostics processor makes a call to the [dbo.aspnet_Users] table in the Core database which adds an unnecessary overhead on SQL Server and the Sitecore API execution pipeline. | | 110322 | - | Pipelines | It is not possible to use the uiUpload pipeline from different UI frameworks. | | 96694, 450156 | - | Publishing | A reminder is sent every time an item is published. | | 92656, 367174 | - | Publishing | Excessive data is published when an item has no versions in some languages. | | 95988, 433132 | - | Publishing | The ItemPathsCache is cleared unnecessarily. | | 132955 | - | Publishing | The Incremental publishing mode publishes unmodified versions of cloned items. | | 135362 | - | Sitecore.ContentSearch.Azure | Fields with DateTime, Date, Boolean, ID data are indexed incorrectly. | 478680, 481732, 481403, 483540, 490003, 489740, 502971 | 145992 | - | Sitecore.ContentSearch.Azure | User cannot rebuild indexes due to more than 1K fields within sitecore items. | 482951, 485437, 500936 | 152119 | - | Sitecore.ContentSearch.Azure | The `SearchResultItem.GetDescendants()` method throws 'NotSupportedException' exception. | 478680 | 146054 | - | Sitecore.ContentSearch.Azure | Negative clauses and clause grouping do not work. | 478680 | 145570, 145716 | - | Sitecore.ContentSearch.Azure | The `Match()` method does not work when regex contains square brackets. | | 138537 | - | Sitecore.ContentSearch.Azure | Search by "Site:*" throws an exception. | | 130619 | - | Solr | When the ContentSearch.Solr.EnforceAliasCreation setting is enabled, it breaks index initialization. | | 124981 | - | SPEAK | The DatePicker component repeatedly and automatically changes its value going back in time when the value set is in a specific interval near the end of the day and the server is in a different time zone than the client. | 130520 | 98800 | - | SPEAK | The Sitecore logo shown in the application header extends beyond the edge of the application header when the global header is hidden. | | 128606 | - | SPEAK | The SPEAK version 1 Legacy chart components are missing the appropriate base templates. | | 131784 | - | SPEAK | In some cases, the ScaleUnit field in LegacyChart templates is shared but should be versioned (to allow translation), while in other cases, the field should be shared (where translation is not appropriate). | | 140866 | - | SPEAK | In some cases, SPEAK does not pass some facet text to the Translate method, leading to some untranslated text appearing in the user interface. | | 134593, 119669, 140813 | - | SPEAK | When using Solr, the date related filters did not work when, for example, attempting to locate images in the select media dialog. | | 126828, 144267 | - | SPEAK | The SPEAK based Uploader component did not use the standard uploader pipelines and therefore ignored the configuration settings restricting specific file extensions from being uploaded. | | 112543, 96694, 110260, 114071, 147398 | - | SPEAK | The SPEAK Uploader does not support changing the destination for uploaded files after the user selected the files, but before clicking Upload. | | 145849, 95551, 145628, 145850 | - | SPEAK applications | After you have selected the files that you want to upload, you cannot change the destination folder. | | 95551, 425244 | - | SPEAK applications | In the Select Media dialog, the All image files filter overrides the Root parameter of the SearchPanel Config filters. | | 94870, 406359 | - | SPEAK applications | The Rule editor doesn't show conditions and actions for SPEAK items. | | 112045 | - | Web Forms for Marketers | If you rename an item, it reverts back to the field title when you save it. | | 112928 | - | Web Forms for Marketers | In an MVC layout, a droplist cannot display an empty choice correctly. | | 109938 | - | Web Forms for Marketers | In an MVC form, the Success message is not encoded correctly. | | 67854 | - | Web Forms for Marketers | In single-instance setups, the Date and Date picker fields use the user language instead of the Sitecore.Context.Language. | | 121210 | - | Web Forms for Marketers | The length of an E-mail field cannot be changed in the Form Designer. | | 99623 | - | Workbox | The Workbox throws an exception while paging. | | 96929, 454335 | - | Workbox | The Workbox cannot execute commands for non-English items. | | 141780 | - | Workbox | The long workflow comment displays incorrectly in the workflow history dialog. | | 139673 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update3/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update3/index.md deleted file mode 100644 index 19ccaf5d4..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update3/index.md +++ /dev/null @@ -1,70 +0,0 @@ ---- -title: "Sitecore Experience Platform 8.2 Update-3" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update3.aspx ---- - -Sitecore 8.2 builds on the core functionality released on the 8.x platform and continues to incorporate feedback we have received from customers, partners, and analysts to strengthen the platform since Sitecore 8.0 was released. Commerce usability and functionality have been improved and additional modules such as Experience Accelerator and Express Migrations have been introduced to help customers speed implementation times and assist with moving to the modern 8.x platform. - -This page contains all the resources for **Sitecore Experience Platform 8.2 rev. 170407 (8.2 Update-3)**. - -Looking for **a different version**? See [all available versions](/downloads/Sitecore_Experience_Platform). - -Among other things, this update contains fixes that address issues around uploading contact lists. Please refer to the release notes for further details. - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore web application installer](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update3/Secure/Sitecore%208.2%20rev.%20170407%20(exe).zip) | Choose this link to download the setup.exe (packaged as zip) installation program. This is everything you need to get started. | - | [ZIP archive of the Sitecore site root folder](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update3/Secure/Sitecore%208.2%20rev.%20170407.zip) | Choose this link to install Sitecore manually (without the help of the setup.exe installation program). | - | [Oracle databases](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update3/Secure/Sitecore%208.2%20rev.%20170407%20(oracle%20dbs).zip) | If you intend to use Oracle for the Core db, please download the following file and check the installation guide for instructions on how to install and configure Oracle. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Packages for XP0 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update3/Secure/Sitecore%208.2%20rev.%20170407%20(WDP%20XP0%20package).zip) | WebDeploy package for XP0 / Single Instance configuration. | - | [Packages for XP/XP1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update3/Secure/Sitecore%208.2%20rev.%20170407%20(WDP%20XP1%20packages).zip) | Packages for XP1 configuration with four dedicated roles: CM, CD, Processing, Reporting. | - | [Packages for XM/XM1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update3/Secure/Sitecore%208.2%20rev.%20170407%20(WDP%20XM1%20packages).zip) | Packages for XM1 configuration with two roles: CM, CD. These packages are configured in CMS-only mode. | - | [Packages for XDB1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update3/Secure/Sitecore%208.2%20rev.%20170407%20(WDP%20XDB1%20packages).zip) | Packages for XDB1 configuration with two dedicated roles: Processing and Reporting. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update3/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known issues](https://kb.sitecore.net/articles/631685) | Choose this link to access the Sitecore Knowledge Base. | - | [Installation guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update3/Secure/Installation-Guide-SC82-Update-3.pdf) | The installation procedure for the Sitecore Experience Platform. | - | [Upgrade guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update3/Secure/Sitecore-8.2-Update-3-Upgrade-Guide.pdf) | To upgrade from a previous Sitecore version please follow the instructions in this guide. | - | [Assembly list](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update3/Secure/Sitecore.Platform.Assemblies%208.2%20rev.%20170407.txt) | Complete list of assemblies shipped with this release. | - -## Modules - - | Resource | Description | - | --- | --- | - | [Web Forms For Marketers 8.2](/downloads/Web_Forms_For_Marketers/82/Web_Forms_For_Marketers_82_Update3) | Download files and release information for Web Forms for Marketers 8.2 (Update-3). | - -## Upgrade options - - | Resource | Description | - | --- | --- | - | [Sitecore update package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update3/Secure/Sitecore%208.2%20rev.%20170407%20(update%20package).zip) | Download files needed for the upgrade process. | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update3/Secure/Sitecore%208.2%20rev.%20170407%20(config%20files).zip) | This package contains configuration files and database scripts for the upgrade. | - | [Sitecore Update Installation Wizard](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update2/Secure/Sitecore%20Update%20Installation%20Wizard%202.0.1%20rev.%20161216.zip) | Sitecore Update Installation Wizard allows developers to update existing Sitecore Experience Platform using Sitecore update packages. | - -## Client translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update3/Secure/Sitecore%208.2%20rev.%20170407%20(da-DK).zip) | Danish language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update3/Secure/Sitecore%208.2%20rev.%20170407%20(de-DE).zip) | German language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update3/Secure/Sitecore%208.2%20rev.%20170407%20(ja-JP).zip) | Japanese language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - -## Usage policies - - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - | [Sitecore xDB Cloud usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_xDB_Cloud_Usage_Policy) | This policy is applicable if you are using Sitecore xDB Cloud. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update4/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update4/Release_Notes.md deleted file mode 100644 index 9782947a6..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update4/Release_Notes.md +++ /dev/null @@ -1,143 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update4/Release_Notes ---- - -**June 2017 – released Sitecore Experience Platform 8.2 Update 4 (rev. 170614)** - -This is a product update. Sitecore recommends that you upgrade to this release if it includes fixes that meet the specific needs of your organization. If this release does not include new functionality or specific fixes that your organization requires, you may benefit from waiting to upgrade until Sitecore releases an update that is relevant for your organization. This is especially true in production environments. - -## New features/improvements - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - | API | The scope of the `Caching.DebugEnabled` setting on the `Remove(object key)` and `Remove(Predicate predicate)` methods has been extended. | - | 156443 | - | Configuration | In DEBUG mode, all the boosting logs are set to `Verbose`. | - | 96907, 453974 | - | Item Buckets API | The facet-related code was optimized for better performance. | - | 145292, 146428, 145306, 96751, 451348 | - | Miscellaneous | The `CdnPath` and `CdnDebugPath` URLs now use HTTPS. | - | 147276 | - | Web Forms for Marketers | When you create a form, the default engagement value is 100. | - | 162879 | - -## Resolved issues - -The following issues have been fixed: - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - | API | `DeviceItem.FindBestMatch` does not fallback to the default device when an exception is raised in `MatchesRules`. | - | 150302 | - | API | An incorrect value in the `SourceItem` field causes `GetItemUriFromSourceItem` to fail. | - | 143799 | - | API | An incorrect value in the `__Source Item` field breaks all the API calls to the item.  | - | 153466 | - | Caching | The ItemCache is not updated after the `RestoreItemCompletedEvent`.   | - | 131115 | - | Content Editor | The Content Editor behaves unreliably when an item contains more than 255 fields. | - | 145054 | - | Content Editor | When you rename an item, its new name is not published. | - | 160787,161148,160040 | - | Content Editor | The field description is shown in the content language. | - | 109793 | - | Content Editor | Searching in the content tree opens an item in the default language. | - | 94798, 404768 | - | Content Editor | In the Media Library, the `Upload Files` dialog fails to handle errors correctly and hangs when using Flash. | - | 125233 | - | Content Editor | The `Rebuild All`, `Rebuild Index`, and `Refresh Tree` commands cause a serialization exception. | - | 141098 | - | Content Editor | If you insert a long text (more than 2000 characters) into any field, an exception occurs. | - | 156878 | - | Content Editor | Time is not shown in a `DateTime` field. | - | 90361 | - | Content Editor | Breaking changes in the behavior of `UserOptions.View.UseDisplayName` cause names in the content tree to be displayed incorrectly. | - | 154346 | - | ContentSearch.Azure | The ​Azure Search provider does not support full-text search.​ | 482343, 483099, 481732 | 157546 | - | ContentSearch.Azure | The `Take, Skip,` and `Page` methods do not work.​ | 479281 | 150080 | - | ContentSearch.Azure | Search queries may use the wrong syntax,​ ​​​ignoring​​​​​ Azure Search schema settings​.​ | 485228 | 162451 | - | ContentSearch.Azure | Exceptions occur when deleting non-existent documents​​​.​​ | 485681, 486771, 487667, 490105, 492778, 495086 | 162750, 164633 | - | ContentSearch.Azure | ​The _content field must not be marked as retrievable​. | - | 161450 | - | ContentSearch.Azure | ​The `NotSupportedException` exception is thrown when indexing the __semantics fields.​​​ | 478680, 481403 | 146415 | - | ContentSearch.Azure | Collection fields contain old value in the index when emptied. | 482169 | 155653 | - | ContentSearch.Azure | ​​`CloudSearchDocumentBuilder` is not taken from the documentBuilderType node of the index configuration.​​​ | 478680, 486819 | 146322 | - | ContentSearch.Azure | Linq provider parses a service response multiple times. | 479281 | 150103 | - | ContentSearch.Azure | CloudSearchProviderIndex queries are logged incorrectly​​ as DEBUG​ level.​ | 479281, 483094 | 147541 | - | Item Buckets | The Item Bucket sync job does not display a count of the processed units. | - | 96608, 448409 | - | Item Buckets Content Search | Content search tries to access the master DB from a CD server. | - | 141738 | - | Item Buckets Content Search | A `Multilist` field that contains IDs without brackets is not indexed.  | - | 96010, 433710 | - | Language fallback | During buckets operations, an English version of an item is created when language fallback is enabled. | - | 149157 | - | Layouts and renderings | The layout delta is generated incorrectly for the `_standard values` and the additional attributes of the rendering of the context item. | - | 157536, 159275, 159276 | - | Layouts and renderings | Incorrect `Placeholder was not found` warnings are added to the log file for cached renderings. | - | 100334 | - | Layouts and renderings | An exception occurs when you open the presentation details of a SPEAK item. | - | 96422, 442312 | - | List Manager | Importing csv files in the List Manager on xDB Cloud was slow and has now been improved. | - | 149805 | - | Media | In some scenarios, media items with the same name are not overwritten when `Upload.SimpleUploadOverwriting=true`. | - | 145832 | - | Miscellaneous | On slow environments, AlarmClock breaks processing. | - | 161393 | - | Miscellaneous | On the Sitecore Desktop, the `Control Panel` shortcut opens the `Log Viewer` application. | - | 145105 | - | Miscellaneous | The `AddToPublishQueue` method does not work with the Oracle data provider. | - | 154851, 158554 | - | Miscellaneous | The `XFrameOptionsHeaderModule` module picks up front-end requests. | - | 122317 | - | Miscellaneous | When `SitecoreADMembershipProvider` is configured, the application crashes when you attempt to log in. | - | 139945 | - | Miscellaneous | During password recovery, sending an email can fail silently without entering an exception in the log file. | - | 103775 | - | Miscellaneous | In the Export language wizard, the `Download` button doesn't work if the path to the language file doesn't contain the '/' symbol. | - | 116714 | - | Miscellaneous | A direct link to a folder can cause a `NullReferenceException`. | - | 149586 | - | Miscellaneous | An authenticated user is redirected to the login page when they access an item that they don't have read permission for. | - | 127175 | - | Miscellaneous | When you click the `Forgot your Password` link, an exception occurs when you reset the password in the German and Danish languages. | - | 124719 | - | Miscellaneous | An incorrect client IP is displayed when the Sitecore servers are behind a proxy load balancer.  | - | 136023 | - | MVC | Anonymous users can preview an unpublished version of an item that has an MVC layout​​. | - | 153472 | - | Performance | There is a memory leak when `Caching.CacheKeyIndexingEnabled.AccessResultCache=true`. | - | 153306 | - | Performance | The number of records in the log file that are created by the `IndexDependentHtmlCacheManager` class has been minimized. | - | 95130, 412932 | - | Publishing | Old blobs are not deleted from the web database when it is published. | 93755 | 93755, 385967 | - | Publishing | If the shared field of an item is changed, too many entries appear in the `PublishQueue`. | - | 146630 | - | Publishing | The `Object reference not set to an instance of an object` exception sometimes occurs when publishing items. | - | 94993, 409190 | - | Publishing | Tracing failed requests break publishing. | - | 95730, 428310 | - | Rich Text Editor | The `Format HTML` command doesn't work. | - | 91462, 336490 | - | Security API | When a user tries to upload a file to the Media Library, an unhandled exception occurs. | - | 148993 | - | Security API | Enabling `Failed Request Tracing` can cause the `RemoveFromActiveList` in MediaCache to fail. | - | 96555, 447399 | - | Security API | Enabling `Failed Request Tracing` can cause RuleCache clearing to fail. | - | 96556, 447400 | - | Security API | Enabling `Failed Request Tracing` can cause a rule which operates with items to fail to execute. | - | 96557, 447401 | - | Solr | Escape characters generate an incorrect query. | - | 131992 | - | Solr | Search terms that contain dashes "-" give incorrect search results. | - | 147167 | - | Solr | A language specific field is not created in the default language for items. | - | 148802 | - | Web Forms for Marketers | Creating a new field in a blank form throws a `[NotSupportedException: Collection is read-only.]` error. | - | 139810 | - | Workbox | When you move an item from one workflow state to another, the Workbox lists the old workflow state as "?". | - | 91681 | - | Workbox | In the Workbox, the Content Editor does not open correctly when `addAspxExtensionis=false`. | - | 93149, 375687 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update4/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update4/index.md deleted file mode 100644 index c00d63947..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update4/index.md +++ /dev/null @@ -1,68 +0,0 @@ ---- -title: "Sitecore Experience Platform 8.2 Update-4" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update4.aspx ---- - -Sitecore 8.2 builds on the core functionality released on the 8.x platform and continues to incorporate feedback we have received from customers, partners, and analysts to strengthen the platform since Sitecore 8.0 was released. Commerce usability and functionality have been improved and additional modules such as Experience Accelerator and Express Migrations have been introduced to help customers speed implementation times and assist with moving to the modern 8.x platform. - -This page contains all the resources for **Sitecore Experience Platform 8.2 rev. 170614 (8.2 Update-4)**. - -Looking for **a different version**? See [all available versions](/downloads/Sitecore_Experience_Platform). - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore web application installer](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update4/Secure/Sitecore%208.2%20rev.%20170614%20(exe).zip) | Choose this link to download the setup.exe (packaged as zip) installation program. This is everything you need to get started. | - | [ZIP archive of the Sitecore site root folder](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update4/Secure/Sitecore%208.2%20rev.%20170614.zip) | Choose this link to install Sitecore manually (without the help of the setup.exe installation program). | - | [Oracle databases](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update4/Secure/Sitecore%208.2%20rev.%20170614%20(oracle%20dbs).zip) | If you intend to use Oracle for the Core db, please download the following file and check the installation guide for instructions on how to install and configure Oracle. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Packages for XP0 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update4/Secure/Sitecore%208.2%20rev.%20170614%20(WDP%20XP0%20package).zip) | WebDeploy package for XP0 / Single Instance configuration. | - | [Packages for XP/XP1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update4/Secure/Sitecore%208.2%20rev.%20170614%20(WDP%20XP1%20packages).zip) | Packages for XP1 configuration with four dedicated roles: CM, CD, Processing, Reporting. | - | [Packages for XM/XM1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update4/Secure/Sitecore%208.2%20rev.%20170614%20(WDP%20XM1%20packages).zip) | Packages for XM1 configuration with two roles: CM, CD. These packages are configured in CMS-only mode. | - | [Packages for XDB1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update4/Secure/Sitecore%208.2%20rev.%20170614%20(WDP%20XDB1%20packages).zip) | Packages for XDB1 configuration with two dedicated roles: Processing and Reporting. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update4/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known issues](https://kb.sitecore.net/articles/631685) | Choose this link to access the Sitecore Knowledge Base. | - | [Installation guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update4/Secure/Installation-Guide-SC82-Update-4.pdf) | The installation procedure for the Sitecore Experience Platform. | - | [Upgrade guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update4/Secure/Sitecore-8.2-Update-4-Upgrade-Guide.pdf) | To upgrade from a previous Sitecore version please follow the instructions in this guide. | - | [Assembly list](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update4/Secure/Sitecore.Platform.Assemblies%208.2%20rev.%20170614.txt) | Complete list of assemblies shipped with this release. | - -## Modules - - | Resource | Description | - | --- | --- | - | [Web Forms For Marketers 8.2](/downloads/Web_Forms_For_Marketers/82/Web_Forms_For_Marketers_82_Update4) | Download files and release information for Web Forms for Marketers 8.2 (Update-4). | - -## Upgrade options - - | Resource | Description | - | --- | --- | - | [Sitecore update package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update4/Secure/Sitecore%208.2%20rev.%20170614%20(update%20package).zip) | Download files needed for the upgrade process. | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update4/Secure/Sitecore%208.2%20rev.%20170614%20(config%20files).zip) | This package contains configuration files and database scripts for the upgrade. | - | [Sitecore Update Installation Wizard](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update2/Secure/Sitecore%20Update%20Installation%20Wizard%202.0.1%20rev.%20161216.zip) | Sitecore Update Installation Wizard allows developers to update existing Sitecore Experience Platform using Sitecore update packages. | - -## Client translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update4/Secure/Sitecore%208.2%20rev.%20170614%20(da-DK).zip) | Danish language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update4/Secure/Sitecore%208.2%20rev.%20170614%20(de-DE).zip) | German language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update4/Secure/Sitecore%208.2%20rev.%20170614%20(ja-JP).zip) | Japanese language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - -## Usage policies - - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - | [Sitecore xDB Cloud usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_xDB_Cloud_Usage_Policy) | This policy is applicable if you are using Sitecore xDB Cloud. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update5/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update5/Release_Notes.md deleted file mode 100644 index 2c15785e2..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update5/Release_Notes.md +++ /dev/null @@ -1,113 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update5/Release_Notes ---- - -**August 2017, released Sitecore Experience Platform 8.2 Update 5 (rev. 170728)** - -This is a product update. Sitecore recommends that you upgrade to this release if it includes fixes that meet the specific needs of your organization. If this release does not include new functionality or specific fixes that your organization requires, you may benefit from waiting to upgrade until Sitecore releases an update that is relevant for your organization. This is especially true in production environments. - -## New features/improvements - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - | Configuration | ​Sitecore CMS​ is now FIPS compatible.​
Note: FIPS is only supported in CMSOnlyMode and it does not work with XDB enabled functionality. | - | 92850, 371339 | - | Marketing Foundation | The Mongo .NET driver has been upgraded to version 2.4.4. | - | - | - -## Resolved issues - -The following issues have been fixed: - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - | API | ​​​The Template item is created in the default language instead of the content language.​ | - | 93789, 386244 | - | API | ​Enabling the `ItemCloning.RelinkClonedSubtree` setting does not ​​work when accepting the `ChildCreatedNotification` ​notification.​​ | - | 143267 | - | API | ​The ReflectionUtil.LoadAssembly method places an excessive load on the file system.​​ | - | 164945 | - | API | ​The XSL watcher causes an ​​`InternalBufferOverflow` ​exception. | - | 165124 | - | API | The ​`Login` page calls an external resource.​ | - | 163328 | - | API | ​The performance of the Logger functionality is slow. | - | 171429 | - | API | The ​`LinkManager.GetDefaultUrlOptions` method ignores the `SiteResolving` setting in the `web.config`​ file. | - | 92682, 367702 | - | API | In the `GetQueryable` method, ​`CultureExecutionContext` does not affect field name translation. ​ | - | 155596 | - | API | When access to fonts.googleapis.com is disabled, users wait too long for a timeout. | - | 160615 | - | Caching | ​The `Sitecore.Caching.CacheManager.FindCacheByName(string)` method does not work properly.​ | - | 157082 | - | Caching | The `​​PathCache` cache is no​t cleared after publishing​. | - | 169501 | - | Configuration | ​Sitecore does not work when a site name starts with a number and some attributes are missing. ​ | - | 131829 | - | Content Editor | ​The `RequireLockBeforeEditing` setting and disabling write permission does not work for the following field types: droptree, treelist, treelistEx, droplink, grouped droplist, and grouped droplink. | - | 163859 | - | Content Editor | The `Multilist with Search` field does not work with the `EditFrame` control. ​ | - | 108890, 106439 | - | Content Editor | ​When the `RequireLockBeforeEditing` setting is set to false, the `Edit` button and workflow actions are disabled. | - | 131668 | - | Content Editor | ​Replacing tokens does not work for base items in languages that have a fallback language set​.​ | - | 158413 | - | Content Editor | ​The `__Source Item` field is not excluded from indexing. ​ | - | 164087 | - | Content Editor | ​A wildcard item (*) cannot be resolved if the path to the item contains any items with a display name when the `ItemResolving.FindBestMatch` setting is set to `DeepScan`. | - | 166890 | - | Content Editor | ​Search operations do not respect the context item. ​ | - | 166639 | - | Experience Analytics | The analytics reducer agent clears all the caches on the servers, instead of clearing just the analytics-related caches.​ | - | 21517 | - | Experience Analytics | ​Some charts do not cap the number of results displayed and, as a result, these charts are unreadable. | - | 168419 | - | Item Buckets Content Search | Update operations for `IEnumerable` produce excessive commits.​​​​​​​​ | - | 142962 | - | Item Buckets Content Search | ​​The Solr FieldMap is not thread safe.​​ | - | 168850 | - | Item Buckets Content Search | ​The following Search operations do not respect the start item: Move results to, Copy results to, Clone results to, and Delete results. | - | 170415 | - | Item Buckets Content Search | Escaping ​​symbols cause an incorrect query.​ | - | 131992 | - | Item Buckets Content Search | The ​​​`IndexingStateSwitcher` floods the​​ log files​.​​ | - | 142961 | - | List Manager | ​​An incorrect list count is displayed in large lists. | 173622 | - | - | Marketing Foundation | ThreadAbortException can stall an historic rebuild process.​ | - | 169825 | - | Miscellaneous | ​​​Error levels on the client side are incorrectly set to `Fatal` instead of `Error`. | - | 165961 | - | Platform | ​​​If you modify a lot of files in the wwwroot folder, it can bring down the website. | - | 170790 | - | Publishing | ​A deleted language version of an item in the master database exists in the web database after publishing.​ | - | 165460 | - | Publishing | ​Smart Publishing does not unpublish invalid item versions.​ | - | 162501 | - | Rich Text Editor | ​Empty `` tags in a RTE field cause a field rendering error. | - | 149817 | - | Sitecore.ContentSearch.Azure | ​Azure Search responds with 207 Partial Content when all the documents cannot be processed​. | - | 169846 | - | Sitecore.ContentSearch.Azure | ​Searching with fractions does not work. | - | 173999 | - | Sitecore.ContentSearch.Azure | ​Search operations degrade performance. | 488394 | 173202 | - | Sitecore Services Client | ​The `IsAuthenticated` property is false when token authorization is used​. | - | 166698 | - | Sitecore Services Client | The `AnonymousUserFilter` filter only checks extranet domain users. | - | 166739 | - | Sitecore Services Client | ​​There are double references in the `Sitecore.Services.Infrastructure.dll` file to `System.Web.Http`.​​ | - | 169514 | - | SPEAK | ​The Uploader does not work if the `DestinationUrl` property contains a GUID rather than a path. | - | 149701 | - | SPEAK | ​The Uploader control allows the end user to upload files even after their session has expired. | - | 150101 | - | SPEAK | ​The `Upload Media` dialog ignores the `Media.UploadAsVersionableByDefault` setting. | - | 162905 | - | SPEAK | ​When using a SPEAK application and logging out, Sitecore sometimes sends a request which returns the user to the Login page, rather than back to the visitor site. | - | 116855 | - | xDB and Content Delivery | Mongo driver has been upgraded to version 2.4.4, it is possible to reduce connection open timeout now. | - | 151475 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update5/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update5/index.md deleted file mode 100644 index f07ac8bb5..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update5/index.md +++ /dev/null @@ -1,69 +0,0 @@ ---- -title: "Sitecore Experience Platform 8.2 Update-5" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update5.aspx ---- - -Sitecore 8.2 builds on the core functionality released on the 8.x platform and continues to incorporate feedback we have received from customers, partners, and analysts to strengthen the platform since Sitecore 8.0 was released. Commerce usability and functionality have been improved and additional modules such as Experience Accelerator and Express Migrations have been introduced to help customers speed implementation times and assist with moving to the modern 8.x platform. - -This page contains all the resources for **Sitecore Experience Platform 8.2 rev. 170728 (8.2 Update-5)**. - -Looking for **a different version**? See [all available versions](/downloads/Sitecore_Experience_Platform). - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore web application installer](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Sitecore%208.2%20rev.%20170728%20(exe).zip) | Choose this link to download the setup.exe (packaged as zip) installation program. This is everything you need to get started. | - | [ZIP archive of the Sitecore site root folder](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Sitecore%208.2%20rev.%20170728.zip) | Choose this link to install Sitecore manually (without the help of the setup.exe installation program). | - | [Oracle databases](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Sitecore%208.2%20rev.%20170728%20(oracle%20dbs).zip) | If you intend to use Oracle for the Core db, please download the following file and check the installation guide for instructions on how to install and configure Oracle. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Packages for XP0 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Sitecore%208.2%20rev.%20170728%20(WDP%20XP0%20package).zip) | Package for XP0 / Single Instance configuration. `(264MB)` | - | [Packages for XP/XP1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Sitecore%208.2%20rev.%20170728%20(WDP%20XP1%20packages).zip) | Packages for XP1 configuration with four dedicated roles: CM, CD, Processing, Reporting. `(1030MB)` | - | [Packages for XP/XP1 CM web only configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Sitecore%208.2%20rev.%20170728%20(WDP%20XP1%20CM%20web%20only%20package).zip) | Package for XP1 CM web only configuration. Sets up the CM Web App without setting up any databases. This package should be used in situations where CM needs to perform a specific role such as publishing or EXM mail delivery. `(264MB)` | - | [Packages for XM/XM1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Sitecore%208.2%20rev.%20170728%20(WDP%20XM1%20packages).zip) | Packages for XM1 configuration with two roles: CM, CD. These packages are configured in CMS-only mode. `(518MB)` | - | [Packages for XDB1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Sitecore%208.2%20rev.%20170728%20(WDP%20XDB1%20packages).zip) | Packages for XDB1 configuration with two dedicated roles: Processing and Reporting. `(518MB)` | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update5/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known issues](https://kb.sitecore.net/articles/631685) | Choose this link to access the Sitecore Knowledge Base. | - | [Installation guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Installation-Guide-SC82-Update-5.pdf) | The installation procedure for the Sitecore Experience Platform. | - | [Upgrade guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Sitecore-8.2-Update-5-Upgrade-Guide.pdf) | To upgrade from a previous Sitecore version please follow the instructions in this guide. | - | [Assembly list](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Sitecore.Platform.Assemblies%208.2%20rev.170728.txt) | Complete list of assemblies shipped with this release. | - -## Modules - - | Resource | Description | - | --- | --- | - | [Web Forms For Marketers 8.2](/downloads/Web_Forms_For_Marketers/82/Web_Forms_For_Marketers_82_Update5) | Download files and release information for Web Forms for Marketers 8.2 (Update-5). | - -## Upgrade options - - | Resource | Description | - | --- | --- | - | [Sitecore update package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Sitecore%208.2%20rev.%20170728%20(update%20package).zip) | Download files needed for the upgrade process. | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Sitecore%208.2%20rev.%20170728%20(config%20files).zip) | This package contains configuration files and database scripts for the upgrade. | - | [Sitecore Update Installation Wizard](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Sitecore%20Update%20Installation%20Wizard%202.0.2%20rev.%20170703.zip) | Sitecore Update Installation Wizard allows developers to update existing Sitecore Experience Platform using Sitecore update packages. | - -## Client translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Sitecore%208.2%20rev.%20170728%20(da-DK).zip) | Danish language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Sitecore%208.2%20rev.%20170728%20(de-DE).zip) | German language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Sitecore%208.2%20rev.%20170728%20(ja-JP).zip) | Japanese language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - -## Usage policies - - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - | [Sitecore xDB Cloud usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_xDB_Cloud_Usage_Policy) | This policy is applicable if you are using Sitecore xDB Cloud. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update6/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update6/Release_Notes.md deleted file mode 100644 index 9e9d313f1..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update6/Release_Notes.md +++ /dev/null @@ -1,79 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update6/Release_Notes ---- - -**November 2017 – released Sitecore Experience Platform 8.2 Update 6 (rev. 171121)** - -This is a product update. Sitecore recommends that you upgrade to this release if it includes fixes that meet the specific needs of your organization. If this release does not include new functionality or specific fixes that your organization requires, you may benefit from waiting to upgrade until Sitecore releases an update that is relevant for your organization. This is especially true in production environments. - -## New features/improvements - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - | Marketing Foundation | ​The new `indexInteractions` pipeline contains all of the indexing processors that were in the old interactions pipeline. ​​​ | | 186682 | - | Marketing Foundation | The stored procedures for the `Fact_PageViews`, `Contacts`, and `Accounts` tables in the `Reporting Database` now have now have table valued parameters​.​​ ​​​ | | 189182 | - | Marketing Foundation | ​​​​​The `RebuildReportingDB.aspx` page now contains more detailed status information about the historical aggregation process.​ | | 184348 | - | Marketing Foundation | ​​​The rebuilding processes for the Index and `Reporting DB` have been split. You can now rebuild the `Reporting DB`, and the `Contact Segmentation Index` separately or together. | | 186682 | - | Marketing Foundation | ​​​​​Historical aggregation now supports time slices. This allows you to rebuild a specific portion of the `Collection` database, for example, from the last three months. | | 186349 | - | Marketing Foundation | You can now use profile definitions that are structured by folders in conditions. | | 184837 | - | ​​​​​​​Marketing Foundation | The stored procedures for the `Fact_PageViews`, `Contacts`, and `Accounts` tables in the `Reporting Database` now have table valued parameters​.​​ | | 189182 | - | Miscellaneous | When a user selects an item with a detached file-based media item, the logging message is now a warning instead of an error.​​​ | | 173436 | - | Sitecore.ContentSearch.Azure | ​​​​There is now additional support that enables you to mark fields as non-searchable, non-filterable or non-retrievable​.​ | | 165977, 158044 | - -## Resolved issues - -The following issues have been fixed: - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - | API | Sitecore resolves a part of the URL as a language.​​​​ | | 135247 | - | API | ​​​​The `SavedItemRemoteEvent.FieldChanges` property only includes changed fields​. | | 153554 | - | API | Placing the ​NOT_A_VALID_FILESYSTEM_PATH file in website folder breaks the media resolution. ​​​​​ | | 95341, 419708 | - | API | Incorrect redirects occur when an anonymous user does not have read access permission.​​​ | | 183497 | - | Caching | ​​​​Enabling the `CacheKeyIndexing` setting causes non-indexed cache keys to remain in the cache until it has been completely cleared. | | 171290 | - | Configuration | The SwitchMasterToWeb.config file leaves out the reference to the Master database.​​​​ | | 98770 | - | Configuration | Sitecore 8.2.2 does not patch correctly.​​​ | | 170250 | - | Content Editor | ​​​When you add custom text to an item in the Rich Text Editor, clicking `Suggest fix` corrupts the field's values | | 118610 | - | Content Editor | There is a broken XML value in the `File` field.​​​​ | | 92461 | - | Experience Analytics | ​​The​ `SyncSegmentsProcessor`​ processor runs​ with an anonymous user. | | 187853 | - | Experience Profile | ​Experience Profile displays the content management server hostname in links in a scaled environment.​​​​ | | 60019 | - | Item Buckets Content Search | ​The web index does not remove the old version of an updated item that has been moved, then published.​​​ | | 162291 | - | Item Buckets Content Search | ​​​​Items that have several language versions may disappear from the web index when you run incremental publishing on them. | | 166467 | - | Item Buckets Content Search | When you use the `Multilist with Search` field on a bucketed item, the wrong index resolves.​​​​ | | 150120 | - | Layouts and renderings | ​​​In the Experience Editor, if you add a personalization rule to a rendering and then remove the shared layout from the item, the item no longer renders. | | 96725, 450825 | - | Links | The `sc:link` control renders links that contain a hash tag in the QueryString incorrectly.​​​​ | | 157139 | - | Marketing Foundation | ​​​​During the historical aggregation process, interactions are retrieved in batches instead of one at a time. | | 189175 | - | Marketing Foundation | ​​​The FIPS-compliant algorithm breaks GeoIP GUID calculation. | | 164557, 175516 | - | Marketing Foundation | The `Cannot start analytics tracker` exception appears if two `sc_camp` query strings are present in the URL. ​​​​ | | 179895, 187776 | - | Marketing Foundation | ​​​You cannot select a custom profile for a conditional rendering rule. | | 94227, 188637 | - | Marketing Foundation | The `Sitecore.Analytics.Data.Items.ItemRecords` class caches items by name with no respect to the root item. Items with the same name but with the different root items are therefore cached incorrectly.​​​ | | 194513 | - | Marketing Foundation | The `TrackingField.InitializeProfiles` method slows down performance and request time when you create an instance of TrackingField . ​​​ | | 120791 | - | Media | When you create a Media folder, the `En` language is always selected.​​​​ | | 171079 | - | Miscellaneous | ​​​​A custom handler with a dash in its name does not resolve properly. | | 180240 | - | Miscellaneous​​​​ | ​The `Role Manager` dialogs should be wider.​​​​​ | | 151325 | - | Miscellaneous | ​​​Recently selected icons do not appear in the proper template. | | 136362 | - | Miscellaneous | ​​​Sitecore does not correctly process routed POST requests. | | 171457 | - | Miscellaneous | A large number of profile keys can slow down media requests.​​​ | | 120793 | - | Miscellaneous | ​​​​The `_latestversion` property updates incorrectly when you set the strategy property of the `sitecore_master_index` to `intervalAsynchronousStrategy`. | | 139944 | - | Miscellaneous | The `Insert link` dialog does not save the target value if the client language is not English​​​​ | | 185678 | - | Miscellaneous​​​​ | In the Content Editor, the `Take Screenshot` feature does not work. | | 146497 | - | Miscellaneous | When you install the Sitecore Media Framework 2.2, an error occurs and you cannot modify the `Controls` collection.​​​ | | 186127 | - | Miscellaneous | ​​​Template inheritance does not work for security profile definition items​. | | 91988, 350672 | - | Miscellaneous | In the Experience Editor and in Preview mode, images should not generate hashes.​​​ | | 94465, 398993 | - | Miscellaneous | ​​​When branches have similar names, the database browser ​page goes into an infinite loop. | | 95718, 428025 | - | Performance | ​​​​​The `Sitecore.Analytics.Data.Items.ItemRecords.FindByName(string name)` method causes performance issues.​ | | 173876 | - | Performance | ​​​The `Sitecore.Analytics.Data.TrackingField.NormalizeProfiles` method is very slow and is called too often. | | 180686, 187774 | - | Rich Text Editor | When you maximize the Rich Text Editor dialog, the UI does not display correctly.​​​​ | | 173273 | - | Rich Text Editor | The Rich Text Editor adds extra text when you put multiple external links in the text.​​​​ | | 175841 | - | Rich Text Editor | Some attributes in Rich Text Editor links cause a rendering error. ​​​ | | 184889 | - | Security API | You cannot use the `&` character in a role name in the User Manager.​​​ | | 96550, 447260 | - | Security API | Users who do not have access to the security item can still change item security. ​​​​ | | 182616 | - | Sitecore.ContentSearch.Azure | ​​​You cannot override Azure Search classes​.​ | | 170252, 166319, 170503, 169125, 136614 | - | Sitecore.ContentSearch.Azure | The `CloudSearchUpdateContext.Delete(IIndexableId)` method deletes only the first matching document instead of all the matching documents.​​​​​ | | 165937 | - | Solr | ​​​Solr returns a URI string that is too long error for large queries​. | | 166359 | - | Solr | ​​​Solr Basic Authentication does not work. | | 141324 | - | Templates | ​​​In the `Template Builder`, you cannot use the Tab key to move to the next row. | | 94854, 405985 | - | Workbox | When you collapse a Workflow panel and then click the `Refresh` button, the Workflow panel disappears.​​​ | | 157166 | - | Workbox | When you resize the Workbox window, the groups in the Workbox ribbon do not render correctly. | | 155649 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update6/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update6/index.md deleted file mode 100644 index 188196c4b..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update6/index.md +++ /dev/null @@ -1,69 +0,0 @@ ---- -title: "Sitecore Experience Platform 8.2 Update-6" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update6.aspx ---- - -Sitecore 8.2 builds on the core functionality released on the 8.x platform and continues to incorporate feedback we have received from customers, partners, and analysts to strengthen the platform since Sitecore 8.0 was released. Commerce usability and functionality have been improved and additional modules such as Experience Accelerator and Express Migrations have been introduced to help customers speed implementation times and assist with moving to the modern 8.x platform. - -This page contains all the resources for **Sitecore Experience Platform 8.2 rev. 171121 (8.2 Update-6)**. - -Looking for **a different version**? See [all available versions](/downloads/Sitecore_Experience_Platform). - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore web application installer](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update6/Secure/Sitecore%208.2%20rev.%20171121%20(exe).zip) | Choose this link to download the setup.exe (packaged as zip) installation program. This is everything you need to get started. | - | [ZIP archive of the Sitecore site root folder](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update6/Secure/Sitecore%208.2%20rev.%20171121.zip) | Choose this link to install Sitecore manually (without the help of the setup.exe installation program). | - | [Oracle databases](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update6/Secure/Sitecore%208.2%20rev.%20171121%20(oracle%20dbs).zip) | If you intend to use Oracle for the Core db, please download the following file and check the installation guide for instructions on how to install and configure Oracle. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Packages for XP0 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update6/Secure/Sitecore%208.2%20rev.%20171121%20(WDP%20XP0%20package).zip) | Package for XP0 / Single Instance configuration. `(264MB)` | - | [Packages for XP/XP1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update6/Secure/Sitecore%208.2%20rev.%20171121%20(WDP%20XP1%20packages).zip) | Packages for XP1 configuration with four dedicated roles: CM, CD, Processing, Reporting. `(1030MB)` | - | [Packages for XP/XP1 CM web only configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update6/Secure/Sitecore%208.2%20rev.%20171121%20(WDP%20XP1%20CM%20web%20only%20package).zip) | Package for XP1 CM web only configuration. Sets up the CM Web App without setting up any databases. This package should be used in situations where CM needs to perform a specific role such as publishing or EXM mail delivery. `(264MB)` | - | [Packages for XM/XM1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update6/Secure/Sitecore%208.2%20rev.%20171121%20(WDP%20XM1%20packages).zip) | Packages for XM1 configuration with two roles: CM, CD. These packages are configured in CMS-only mode. `(518MB)` | - | [Packages for XDB1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update6/Secure/Sitecore%208.2%20rev.%20171121%20(WDP%20XDB1%20packages).zip) | Packages for XDB1 configuration with two dedicated roles: Processing and Reporting. `(518MB)` | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update6/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known issues](https://kb.sitecore.net/articles/631685) | Choose this link to access the Sitecore Knowledge Base. | - | [Installation guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update6/Secure/Sitecore%208.2%20Update%206%20Installation%20Guide.pdf) | The installation procedure for the Sitecore Experience Platform. | - | [Upgrade guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update6/Secure/Sitecore-8.2-Update-6-Upgrade-Guide.pdf) | To upgrade from a previous Sitecore version please follow the instructions in this guide. | - | [Assembly list](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update6/Secure/Sitecore.Platform.Assemblies%208.2%20rev.%20171121.txt) | Complete list of assemblies shipped with this release. | - -## Modules - - | Resource | Description | - | --- | --- | - | [Web Forms For Marketers 8.2](/downloads/Web_Forms_For_Marketers/82/Web_Forms_For_Marketers_82_Update6) | Download files and release information for Web Forms for Marketers 8.2 (Update-6). | - -## Upgrade options - - | Resource | Description | - | --- | --- | - | [Sitecore update package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update6/Secure/Sitecore%208.2%20rev.%20171121%20(update%20package).zip) | Download files needed for the upgrade process. | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update6/Secure/Sitecore%208.2%20rev.%20171121%20(config%20files).zip) | This package contains configuration files and database scripts for the upgrade. | - | [Sitecore Update Installation Wizard](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Sitecore%20Update%20Installation%20Wizard%202.0.2%20rev.%20170703.zip) | Sitecore Update Installation Wizard allows developers to update existing Sitecore Experience Platform using Sitecore update packages. | - -## Client translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update6/Secure/Sitecore%208.2%20rev.%20171121%20(da-DK).zip) | Danish language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update6/Secure/Sitecore%208.2%20rev.%20171121%20(de-DE).zip) | German language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update6/Secure/Sitecore%208.2%20rev.%20171121%20(ja-JP).zip) | Japanese language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - -## Usage policies - - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - | [Sitecore xDB Cloud usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_xDB_Cloud_Usage_Policy) | This policy is applicable if you are using Sitecore xDB Cloud. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update7/Release_Notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update7/Release_Notes.md deleted file mode 100644 index 2096257fa..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update7/Release_Notes.md +++ /dev/null @@ -1,106 +0,0 @@ ---- -title: "Release Notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update7/Release_Notes ---- - -**April 2018 – released Sitecore Experience Platform 8.2 Update 7 (rev. 180406)** - -This is a product update. Sitecore recommends that you upgrade to this release if it includes fixes that meet the specific needs of your organization. If this release does not include new functionality or specific fixes that your organization requires, you may benefit from waiting to upgrade until Sitecore releases an update that is relevant for your organization. This is especially true in production environments. - -## New features/improvements - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - | Experience Analytics | ​​The ability to truncate query strings for URLs in page related dimensions has been added. | | 19666 | - | Marketing Foundation | ​The `Contact Segmentation Index` was updated to be compatible with the `Right to be forgotten` feature.

This includes cases where tags, pages, and page event documents should be removed, as well as cases where the updates would have been ignored because of the setting to avoid indexing anonymous contacts.

| | 210484 | - | Marketing Foundation | ​To enable an organization to implement the `Right to be informed` as part of GDPR, the new `Sitecore.Analytics.Model.Entities​.IGdprStatus` contact facet has been added. This facet contains the `ExecutedRightToBeForgotten` boolean field that indicates whether the `Right To Be Forgotten` has been executed for the contact. The facet also contains the `PrivacyPolicyAcknowledgement` collection that contains an audit trail of when the contact acknowledged the organization's privacy policy. Each item contains the following fields:

- Agreement Date - the date when the customer confirmed that they agreed to the organization's latest privacy policy.
- Policy Identifier - the unique identifier for the policy. This can include the version number.​

​ | | | - | Marketing Foundation | A new pipeline `initializeMongoDbCollectionsIndexes `has been introduced that enables you to customize the initialization of the MongoDB indexes. It is run during Sitecore instance initialization process. You can extend the pipeline to ensure that all the required indexes are included or to drop obsolete index​es from the MongoDB collection.​`` | | | - | Marketing Foundation | ​To enable an organization to implement the `Right of access` and the `Right to data portability` as part of GDPR, the contact repository API was extended to retrieve the complete interaction history of a given contact. The `Sitecore.Analytics.Data.ContactRepositoryBase.GetInteractionCursor` method can be used to enumerate the contact's historical interactions, loading them in batches of a desired size.​ | | 201445 | - | Marketing Foundation | ​To enable an organization to implement the `Right to be forgotten`, a new `removeContactPiiSensitiveData` pipeline has been implemented. | | 201445 | - | Marketing Foundation | The default interval between attempts by Shared Session State to place a lock on a contact has been increased from 10 to 200 milliseconds to avoid unnecessary use of Shared Session Store resources. | | 196356 | - | Marketing Foundation | ​​The `Sitecore.Analytics.ExcludeRobots.config` file has been extended with new user agents for the `Googlebot/2.1` and `BUbiNG` bots. | | 197618, 197619 | - | Sitecore.ContentSearch.Azure | To avoid downtime, you can now switch Azure Search indexes on rebuild. ​ | 495279, 486505, 485220, 493588, 491750, 478130, 485664, 484750 | 146822 | - | Sitecore.ContentSearch.Azure | ​​Azure Search now allows fields with the same name and different types to be stored next to each other in the index.​ | 483540 | 164142, 170084, 170254 | - | Sitecore.ContentSearch.Azure | ​Azure Search now supports indexing in several languages. | | 151795, 156686 | - -## Resolved issues - -The following issues have been fixed: - - | Context | Description | Customer ticket ID (or other) | TFS no. | - | --- | --- | --- | --- | - | API | ​The `General Link Anchor` saves to the wrong target. | | 183327 | - | API | ​The roles assigned to a virtual user are lost if the user is redirected to another server. | | 196266 | - | API | ​The order of the renderings changes when you remove a rendering from a layout. | | 201886 | - | API | ​​Loging in when the `DisablePasswordRecovery` setting is set to true breaks the `login.js` file.​ | | 193491 | - | API | Profile changes for virtual users are not shown unless you clear the `UserProfileCache​`. | | 193799, 216247 | - | API | ​Automatic type conversion for `IEnumerable`​ doesn't work in the default Solr configuration.​ | | 197659 | - | API | ​The `LinkUpdaterJob` job updates links for the same item multiple times. | | 192299 | - | Content Editor | ​​The `TreeListEx` field type does not respect `ReadOnly` permissions. | | 94701, 402909 | - | Content Editor | ​You cannot expand sections in the Content Editor that contain non-ASCII characters. | | 93699, 385145 | - | Content Editor | ​​Parameters are not sent to the `QueryState` method. | | 93409, 380595 | - | Content Editor | The `Gallery.Icons` control is broken and does not pop up correctly. | | 202331 | - | Content Editor | ​​The `Check in` command only unlocks the latest version of an item in the Content Editor. | | 207331 | - | Content Editor | ​​You always get old field values inside a validator. | | 91313, 333285 | - | Content Editor | ​On the `Developer` tab, the `Serialize Tree` button throws an exception when there are big trees of items. | | 95200, 415261 | - | Item Buckets Content Search | ​Fields with standard values are not indexed when the `indexAllFields` setting is set to `false`.​ | | 408318 | - | Language Fallback | ​​Disabling item language fallback on an item leads to outdated documents in indexes. | | 154372 | - | Language fallback | Adding a new version of an item and publishing it removes documents in the fallback languages of the item from the web index. ​ | | 153722 | - | Layouts and Renderings | When you publish a clone item, the final layout changes are missing. | | 199088 | - | Layouts and Renderings | ​The delta for the `Final renderings` field isn't updated for a different language if the `Renderings` field is changed.​ | | 196571 | - | Links | ​​The `EditingNotAllowedException` exception occurs in rendering parameters. | | 94858, 406071 | - | Links | `RemoveBrokenLinks.aspx` does not work correctly. | | 103875 | - | Links | ​​When you add an anchor to a link in the RTE, it may appear in the middle of the query string instead of at the end. | | 120848 | - | Marketing Foundation | Historical aggregation only runs in a single thread.​ | | 199888, 96210 | - | Marketing Foundation | During historical rebuilding, if you copy definitions with the `RebuildTargets` setting set to `Index`, exceptions occur.​​ ​ | | 196778 | - | Marketing Foundation | ​​The contact lease for the contact \{GUID\} exception is now renewed properly when the contact reaches the max page count threshold during one visit. | | 198208 | - | Marketing Foundation | ​A contact value may be lost if it is assigned after the contact reaches the `MaxPageIndexThreshold` during a parallel session. | | 208784 | - | Marketing Foundation | ​Tracker.Current.Session.Identify performs a MergeVisits operation that can exceed the MongoDB sort operation memory usage limit. | | 142272, 104465 | - | Marketing Foundation | ​A newly created campaign name is displayed as `$name` in the `Attributes` dialog, if the campaign item does not have a version in the default language. | | 108531 | - | Marketing Foundation | ​​It is impossible to configure the timeout for the web request created by `Sitecore.Analytics.Commons.ConfigurationBasedHttpTransportFactory`. | | 109562, 110296 | - | Marketing Foundation | During the `History Rebuild` process, copying the definitions fails if `Rebuild Targets` is set to `Index`. | | 196778 | - | Media | ​Media hash generation change doesn't work correctly. | | 192711 | - | Media | ​You cannot detach file-based media items.​ | | 192625 | - | Miscellaneous | ​If you add an anchor to an internal link, it doesn't appear in the rendered link tag.​ | | 202562 | - | Miscellaneous | ​FieldEditor validation does not run correctly. | | 90837, 322849 | - | Miscellaneous | ​​The `virtualFolder` site setting doesn’t work properly if the `physicalFolder` property is not specified. | | 91335, 334079 | - | Miscellaneous | ​The raw URL is encoded twice in the `HandleItemNotFound` method. | | 91478, 336908 | - | Miscellaneous | ​The website is resolved incorrectly when it's hostname is a substring of the requested hostname. | | 91535, 338338 | - | Miscellaneous | ​The `DateTimeMacro` does not switch to the selected date/time. | | 94423, 398199 | - | Miscellaneous | Inline closing tags in HTML are removed and validation fails. | | 139799 | - | Miscellaneous | ​Mixing display names with item names that contain hyphens causes links to break. | | 163173 | - | Miscellaneous | When the user selects an item with a detached file-based media item, the logging message level has been changed from `Error` to `Warning`.​ | | 173436 | - | Miscellaneous | When you access an item with an MVC layout in the Experience Editor, the `The Controls collection cannot be modified` error occurs. | | 176688 | - | Miscellaneous | ​​The `RemoveLink` method in the `Layout` field doesn't delete every broken link. | | 188475 | - | Miscellaneous | ​The `HashEncryption` class is not thread safe. | | 190277 | - | Miscellaneous | ​The `ContextCache` does not have any scavenging functionality and this can cause the `OutOfMemoryException`. | | 191831 | - | Miscellaneous | ​There are too many `disabled` attributes in field controls.​ | | 194585 | - | Miscellaneous | ​Implement a lock-free `DocumentTypeMapCache`. | | 195244 | - | Miscellaneous | ​The grid view goes out of alignment when you add a new field to the search results. | | 200327 | - | Miscellaneous | ​​The `item:saved` event is fired more than once when you create items or add new versions. | | 95306, 417978 | - | Miscellaneous | ​The `LanguageFallbackFieldValuesProvider.IsValidForFallback` method ignores the standard value of the `Enable Shared Language Fallback` field. | | 105327 | - | Miscellaneous | ​Field level fallback indexing fails to update the fallback value when the original value is changed.​ | | 130860 | - | Miscellaneous | When using the `Redis session state` provider, a non-optimal mechanism for processing expired sessions data causes Sitecore to crash due to the heavy load. | 500283 | 204592 | - | Multibrowser fixes | ​The Rule Editor does not show the scroll bar. | | 94730, 403632 | - | Multibrowser fixes | ​​Changing the sort order of an item creates a new version of the item. | | 93017, 373687 | - | Multibrowser fixes | ​The Rich Text Editor incorrectly processes a `Delete Line` operation in the HTML. | | 93773, 386098 | - | Path Analyzer | ​​The standard values for Path Analyzer maps have a broken link that prevents you from deploying new maps. | | 196134, 213960 | - | Pipelines | ​​The `rootItem` is displayed instead of the `Login` page when the visitor does not have permission to access an item. | | 96219, 437738 | - | Publishing | Adding templates to the queue in the publish pipeline does not publish the templates correctly. | | 94747, 404036 | - | Publishing | Templates with sections and fields are not published when the `Related Items` check box is selected.​ | | 94877, 406474 | - | Publishing | ​The `Publish related items` feature publishes an item template without its subitems (sections, fields, __StandardValues)​.​ | | 94883, 406573 | - | Publishing | ​`Sitecore.Data.Items.ItemPublishing` clogs up the `ContextCache` with `null` values during publishing. | | 191837 | - | Publishing | ​The `Publishing Restrictions` dialog causes unnecessary item re-saves.​ | | 200552 | - | Rich Text Editor | ​The modal window of the Rich Text Editor is truncated if it is opened on a tablet device. | | 131835 | - | Security API | ​There is double encoding in the `Sitecore.Pipelines.RenderLayout.SecurityCheck` processor​. | | 91438, 336004 | - | Sitecore.ContentSearch.Azure | ​Search results only contain 50 items by default. | 492451, 491431, 481646, 479281, 497256, 495805, 492125 | 147550, 147551 | - | Sitecore.ContentSearch.Azure | ​In the Content Editor, when a user filters search results by language, the filter is not applied. ​ | | 205818 | - | Sitecore.ContentSearch.Azure | ​Searching by _fullpath does not return any results if the _fullpath includes empty spaces​.​ | | 200381 | - | Sitecore.ContentSearch.Azure | Corrupted items prevent users from rebuilding indexes in Azure deployments. | 498128, 500140, 498447, 495086 | 198669 | - | Sitecore.ContentSearch.Azure | ​When you use Azure search queries, to search for items in a specific language that contains a hyphen in its name (for example, en-AU), the results incorrectly contain items for all languages.​ | 502743, 491928, 487773, 501874, 496438 | 171546 | - | Sitecore.ContentSearch.Azure | ​Searches that contain multiple words should only return documents that match the whole search phrase. ​ | 500897, 491064, 481633, 501874, 498841 | 147386 | - | Sitecore.ContentSearch.Azure | ​On Azure, web indexes can not be rebuilt from a CM server. ​​ | 499125, 495819 | 194495 | - | Sitecore.ContentSearch.Azure | ​The `Integer` field does not map to `Edm.Int32` by default. | 483540 | 164142 | - | Sitecore.ContentSearch.Azure | ​​Sitecore fields that are marked as non-searchable can be found using search.​​​​​​​ ​ | | 192278 | - | Sitecore.ContentSearch.Azure | ​Complex search queries that contain `OR` statements return incorrect search results. | 485763, 492251, 503065 | 166765 | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update7/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update7/index.md deleted file mode 100644 index 650e0f4ea..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update7/index.md +++ /dev/null @@ -1,78 +0,0 @@ ---- -title: "Sitecore Experience Platform 8.2 Update-7" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update7.aspx ---- - -Sitecore 8.2 builds on the core functionality released on the 8.x platform and continues to incorporate feedback we have received from customers, partners, and analysts to strengthen the platform since Sitecore 8.0 was released. Commerce usability and functionality have been improved and additional modules such as Experience Accelerator and Express Migrations have been introduced to help customers speed implementation times and assist with moving to the modern 8.x platform. - -This page contains all the resources for **Sitecore Experience Platform 8.2 rev. 180406 (8.2 Update-7)**. - -Looking for **a different version**? See [all available versions](/downloads/Sitecore_Experience_Platform). - -## Download options - - | Resource | Description | - | --- | --- | - | [Sitecore web application installer](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore%208.2%20rev.%20180406%20(exe).zip) | Choose this link to download the setup.exe (packaged as zip) installation program. This is everything you need to get started. | - | [ZIP archive of the Sitecore site root folder](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore%208.2%20rev.%20180406.zip) | Choose this link to install Sitecore manually (without the help of the setup.exe installation program). | - | [Oracle databases](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore%208.2%20rev.%20180406%20(oracle%20dbs).zip) | If you intend to use Oracle for the Core db, please download the following file and check the installation guide for instructions on how to install and configure Oracle. | - -## Download options for Azure AppService - - | Resource | Description | - | --- | --- | - | [Packages for XP0 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore%208.2%20rev.%20180406%20(WDP%20XP0%20package).zip) | Package for XP0 / Single Instance configuration. `(264MB)` | - | [Packages for XP/XP1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore%208.2%20rev.%20180406%20(WDP%20XP1%20packages).zip) | Packages for XP1 configuration with four dedicated roles: CM, CD, Processing, Reporting. `(1030MB)` | - | [Packages for XP/XP1 CM web only configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore%208.2%20rev.%20180406%20(WDP%20XP1%20CM%20web%20only%20package).zip) | Package for XP1 CM web only configuration. Sets up the CM Web App without setting up any databases. This package should be used in situations where CM needs to perform a specific role such as publishing or EXM mail delivery. `(264MB)` | - | [Packages for XM/XM1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore%208.2%20rev.%20180406%20(WDP%20XM1%20packages).zip) | Packages for XM1 configuration with two roles: CM, CD. These packages are configured in CMS-only mode. `(518MB)` | - | [Packages for XDB1 configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore%208.2%20rev.%20180406%20(WDP%20XDB1%20packages).zip) | Packages for XDB1 configuration with two dedicated roles: Processing and Reporting. `(518MB)` | - -## Download options for Azure AppService Solr Search Configuration - - | Resource | Description | - | --- | --- | - | [Packages for XP0 Solr configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore%208.2%20rev.%20180406%20(Solr%20Configuration%20XP0).zip) | Package for Solr Search configuration on top of XP0 / Single Instance. | - | [Packages for XP/XP1 Solr configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore%208.2%20rev.%20180406%20(Solr%20Configuration%20XP1).zip) | Packages for Solr search configuration of top of XP1 instance. | - | [Packages for XM/XM1 Solr configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore%208.2%20rev.%20180406%20(Solr%20Configuration%20XM).zip) | Packages for Solr search configuration on top of XM1 instance. | - | [Packages for XDB1 Solr configuration](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore%208.2%20rev.%20180406%20(Solr%20Configuration%20XDB1).zip) | Packages for Solr search configuration on top of XDB1 instance. | - -## Release information - - | Resource | Description | - | --- | --- | - | [Release notes](/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update7/Release_Notes) | A list of features, improvements, and fixes that have been implemented in this release. | - | [Known issues](https://kb.sitecore.net/articles/631685) | Choose this link to access the Sitecore Knowledge Base. | - | [Installation guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore-8.2-Update-7-Installation-Guide.pdf) | The installation procedure for the Sitecore Experience Platform. | - | [Upgrade guide](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore-8.2-Update-7-Upgrade-Guide.pdf) | To upgrade from a previous Sitecore version please follow the instructions in this guide. | - | [Assembly list](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore.Platform.Assemblies%208.2%20rev.%20180406.txt) | Complete list of assemblies shipped with this release. | - -## Modules - - | Resource | Description | - | --- | --- | - | [Web Forms For Marketers 8.2](/downloads/Web_Forms_For_Marketers/82/Web_Forms_For_Marketers_82_Update7) | Download files and release information for Web Forms for Marketers 8.2 (Update-7). | - -## Upgrade options - - | Resource | Description | - | --- | --- | - | [Sitecore update package](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore%208.2%20rev.%20180406%20(update%20package).zip) | Download files needed for the upgrade process. | - | [Configuration files for upgrade](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore%208.2%20rev.%20180406%20(config%20files).zip) | This package contains configuration files and database scripts for the upgrade. | - | [Sitecore Update Installation Wizard](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update5/Secure/Sitecore%20Update%20Installation%20Wizard%202.0.2%20rev.%20170703.zip) | Sitecore Update Installation Wizard allows developers to update existing Sitecore Experience Platform using Sitecore update packages. | - -## Client translations - - | Resource | Description | - | --- | --- | - | [Danish (da-DK)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore%208.2%20rev.%20180406%20(da-DK).zip) | Danish language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [German (de-DE)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore%208.2%20rev.%20180406%20(de-DE).zip) | German language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - | [Japanese (ja-JP)](https://scdp.blob.core.windows.net/downloads/Sitecore%20Experience%20Platform/82/Sitecore%20Experience%20Platform%2082%20Update7/Secure/Sitecore%208.2%20rev.%20180406%20(ja-JP).zip) | Japanese language client translation file. Read [instructions](https://doc.sitecore.com/xp/en/users/90/sitecore-experience-platform/add-a-new-language-to-system-settings.html) how to import a new language into the Sitecore installation. | - -## Usage policies - - | Resource | Description | - | --- | --- | - | [Sitecore Device Detection Services usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_Device_Detection_Services_Usage_Policy) | This policy is applicable if you are using Sitecore Device Detection Service. | - | [Sitecore IP Geolocation usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_IP_Geolocation_Usage_Policy) | This policy is applicable if you are using Sitecore IP Geolocations Service. | - | [Sitecore xDB Cloud usage policy](/downloads/Sitecore_Experience_Platform/Sitecore_xDB_Cloud_Usage_Policy) | This policy is applicable if you are using Sitecore xDB Cloud. | \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/index.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/index.md deleted file mode 100644 index 3082e1de8..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/82/index.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: "8.2" -description: "Download Sitecore 8.2 and all subsequent updates within this version group." -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/82.aspx ---- - -### [Sitecore Experience Platform 8.2 Update-7](/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update7) - -Download Sitecore Experience Platform 8.2 rev. 180406 (8.2 Update-7). - -### [Sitecore Experience Platform 8.2 Update-6](/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update6) - -Download Sitecore Experience Platform 8.2 rev. 171121 (8.2 Update-6). - -### [Sitecore Experience Platform 8.2 Update-5](/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update5) - -Download Sitecore Experience Platform 8.2 rev. 170728 (8.2 Update-5). - -### [Sitecore Experience Platform 8.2 Update-4](/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update4) - -Download Sitecore Experience Platform 8.2 rev. 170614 (8.2 Update-4). - -### [Sitecore Experience Platform 8.2 Update-3](/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update3) - -Download Sitecore Experience Platform 8.2 rev. 170407 (8.2 Update-3). - -### [Sitecore Experience Platform 8.2 Update-2](/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update2) - -Download Sitecore Experience Platform 8.2 rev. 161221 (8.2 Update-2). - -### [Sitecore Experience Platform 8.2 Update-1](/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Update1) - -Download Sitecore Experience Platform 8.2 rev. 161115 (8.2 Update-1). - -### [Sitecore Experience Platform 8.2 Initial Release](/downloads/Sitecore_Experience_Platform/82/Sitecore_Experience_Platform_82_Initial_Release) - -Download Sitecore Experience Platform 8.2 rev. 160729 (8.2 Initial Release). \ No newline at end of file diff --git a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/8_0/Sitecore_Experience_Platform_80_Update3/Release_notes.md b/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/8_0/Sitecore_Experience_Platform_80_Update3/Release_notes.md deleted file mode 100644 index ab8740ac7..000000000 --- a/apps/devportal/data/markdown/pages/downloads/Sitecore_Experience_Platform/8_0/Sitecore_Experience_Platform_80_Update3/Release_notes.md +++ /dev/null @@ -1,224 +0,0 @@ ---- -title: "Release notes" -description: "" -origin: https://dev.sitecore.net/Downloads/Sitecore_Experience_Platform/8_0/Sitecore_Experience_Platform_80_Update3/Release_notes ---- - -This is a product update. Sitecore recommends that you upgrade to this release if it includes fixes that meet the specific needs of your organization. If this release does not include new functionality or specific fixes that your organization requires, you may benefit from waiting to upgrade until Sitecore releases an update that is relevant for your organization. This is especially true in production environments. - -For instructions on how to download and install this release, please visit the [Sitecore Developer Portal](http://dev.sitecore.net/). - -## Highlights - -- Includes all the fixes from Sitecore 7.2 Update-4. - -- Improves overall security — several potential security vulnerability fixes applied. - -- Implements backup for Sitecore configuration on every restart. - - -## Documentation - -For all Sitecore Experience Platform 8 documentation, please visit the [Sitecore Documentation Site](http://doc.sitecore.net/). - -## Important changes - -### Sitecore logging - -The time for keeping Sitecore log files has been increased to 30 days. (426814) - -## New features & improvements - -### Marketing Foundation - -- Memory usage has been optimized in the ContactBulkUpdateManager. - -- The Tracker extension for registering outcomes now sets the date and time for the outcome. - - -### Sitecore supportability improvements - -- A Sitecore dumping configuration feature on every Sitecore restart has been implemented. The DumpConfigurationFiles processor has been added to the Sitecore `` pipeline. The processor is defined in the `Sitecore.Diagnostics.config` configuration include file and supports various configuration settings, such as the location for storing configuration files, support for compressing, and files to be tracked. By default, dump files are stored in /diagnostics/configuration_history in the Data folder. (373420) - -- Periodic dumping data from /sitecore/admin/stats.aspx and /sitecore/admin/cache.aspx pages to the file system has been implemented. New processors have been added to the `` pipeline. The location and format of the log file can be configured as part of the processor configuration. By default, dump files are stored in /diagnostics/health_monitor in the Data folder. (415409, 415411) - - -## Resolved issues - -- An empty alert dialog appeared in the Content Editor when creating an item with a name that contained characters specified in the InvalidItemNameChars setting. This has been fixed. (431321) - - -### Control Panel - -- The display language was not changed after refreshing the browser when a user changed the language in the Regional and Language Options dialog of the Control Panel. This has been fixed. (428168) - -- An exception occurred when you opened any application in the Control Panel after a user session had expired. This has been fixed so that the user is redirected to the Sitecore Login page. (429931, 435805) - - -### Engagement Analytics - -- Importing users to an engagement automation plan was slow. This has been fixed. (431530) - -- Viewing automation states that contained a large number of contacts was slow. This has been fixed. (431493) - -- The WriteConcernException exception sometimes appeared in the Sitecore log file when users were enrolled to a state of the engagement plan. This has been fixed. (430655) - -- Analytics Exceptions were not handled properly and appeared in the UI causing the site to be broken. This has been fixed. (428886, 432992) - - -### Multibrowser fixes - -- [IE11] The Select Media Item dialog header was rendered in the wrong place. This has been fixed. (430149) - - -### Package Designer - -- An empty dialog appeared when trying to generate the Sitecore package if the /data/packages folder was missing. This has been fixed so that a missing /packages folder is automatically created and a warning message about this action is added to the Sitecore log file. The same problem was fixed in the Installation Wizard when you click the Upload package button. (428852, 430197) - -- The DirectoryNotFoundException exception appeared when you tried to create a new package from an existing one. The problem occurred only if the /Data/package folder was missing. This has been fixed so that a packages folder is created automatically. A warning message is added to the Sitecore log file. (435796) - - -### Potential security vulnerabilities - -- The password recovery page showed different validation messages when a user with a specified name already existed in the Sitecore database. This has been fixed so that a generic validation message is shown. (363086) - -- A potential cross-site scripting vulnerability has been fixed in the media upload control. (415861) - -- Potential cross-site scripting vulnerabilities have been fixed in the logic responsible for processing query parameters in the SiteContext class. (416948) - -- Potential cross-site scripting vulnerabilities have been fixed in the Content Editor application, Edit User dialog, and Sitecore Desktop. (428980, 428986, 429290, 432461) - -- The Search tab in the Content Editor returned the search result event after a user session had expired. This has been fixed so that a user is redirected to the Login page. (429472) - - -### Publishing - -- The ArgumentOutOfRangeException exception appeared during publishing if the site defined in the sites section in the Sitecore configuration did not have the renderingParametersCache attribute. This has been fixed. (432979, 433131) - - -### Sitecore.ContentSearch API - -- An error with the message "undefined field" sometimes appeared in the search log file when using the Solr search provider, despite the fact that the field existed and had the appropriate type. This has been fixed. (429492, 429702) - - -### Update Installation Wizard - -- The Update Installation Wizard did not support installing files into the Data folder located outside the Sitecore instance. This support has been implemented. The new version of the wizard is compatible with previous Sitecore versions. (429063, 434126) - -- The installation of the update package sometimes stopped responding and never finished. This has been fixed. (434755, 432536) - -- A warning message with the text "The standard values field of template `