From 00715d2232196b11c77d6cdefada6cd36995f628 Mon Sep 17 00:00:00 2001
From: Rafal Paradowski
Date: Tue, 3 Dec 2024 12:53:40 +0100
Subject: [PATCH 01/13] Use notify_team_new_comment workflow action from
.github repo
---
.github/workflows/notify_team_new_comment.yml | 30 ++-----------------
1 file changed, 3 insertions(+), 27 deletions(-)
diff --git a/.github/workflows/notify_team_new_comment.yml b/.github/workflows/notify_team_new_comment.yml
index f3ceae972..07a837e4d 100644
--- a/.github/workflows/notify_team_new_comment.yml
+++ b/.github/workflows/notify_team_new_comment.yml
@@ -6,30 +6,6 @@ on:
jobs:
contributor_issue_comment:
- name: Contributor issue comment
-
- if: >-
- ${{
- !github.event.issue.pull_request &&
- github.event.comment.author_association != 'MEMBER' &&
- github.event.comment.author_association != 'OWNER'
- }}
-
- runs-on: ubuntu-latest
- steps:
- - name: Escape title double quotes
- id: escape_title
- env:
- ISSUE_TITLE: ${{ github.event.issue.title }}
- run: echo "ISSUE_TITLE=${ISSUE_TITLE//\"/\\\"}" >> "$GITHUB_OUTPUT"
-
- - name: Send message to Slack channel
- env:
- SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
- SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
- uses: slackapi/slack-github-action@v1.27.0
- with:
- payload: |
- {
- "text": "*[KDS] New comment on issue: <${{ github.event.issue.html_url }}#issuecomment-${{ github.event.comment.id }}|${{ steps.escape_title.outputs.ISSUE_TITLE }} by ${{ github.event.comment.user.login }}>*"
- }
+ uses: learningequality/.github/.github/workflows/notify_team_new_comment.yml@main
+ secrets:
+ SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
From 1a786c05285a1761bef4bc2fe3fb850cecd6aff9 Mon Sep 17 00:00:00 2001
From: Richard Tibbles
Date: Fri, 8 Dec 2023 12:38:24 -0800
Subject: [PATCH 02/13] Remove use of unused /deep/ selectors, and change
remaining /deep/ selectors to ::v-deep for SASS forward compatibility.
---
docs/pages/icons/index.vue | 2 +-
lib/KDateRange/KDateInput.vue | 2 +-
lib/KSelect/index.vue | 8 --------
3 files changed, 2 insertions(+), 10 deletions(-)
diff --git a/docs/pages/icons/index.vue b/docs/pages/icons/index.vue
index 28a9e35bb..9cea86a64 100644
--- a/docs/pages/icons/index.vue
+++ b/docs/pages/icons/index.vue
@@ -226,7 +226,7 @@
From 3c816cf866c61be0d1fc37ee757a8add8c739809 Mon Sep 17 00:00:00 2001
From: Richard Tibbles
Date: Tue, 10 Dec 2024 09:01:08 -0800
Subject: [PATCH 03/13] Cleanup linting config for kolibri-format. Tweak for
v-deep.
---
.htmlhintrc.js | 1 -
.stylelintrc.js | 6 +++++-
2 files changed, 5 insertions(+), 2 deletions(-)
delete mode 100644 .htmlhintrc.js
diff --git a/.htmlhintrc.js b/.htmlhintrc.js
deleted file mode 100644
index 5748ea4fc..000000000
--- a/.htmlhintrc.js
+++ /dev/null
@@ -1 +0,0 @@
-module.exports = require('kolibri-tools/.htmlhintrc');
diff --git a/.stylelintrc.js b/.stylelintrc.js
index 7c6a8898a..72d9793df 100644
--- a/.stylelintrc.js
+++ b/.stylelintrc.js
@@ -1 +1,5 @@
-module.exports = require('kolibri-tools/.stylelintrc');
+const stylelintConfig = require('kolibri-format/.stylelintrc');
+
+stylelintConfig['rules']['selector-pseudo-element-no-unknown'] = [true, { ignorePseudoElements: ['v-deep'] }];
+
+module.exports = stylelintConfig;
From d6ae85da503a724212e840ea7403eb157db109f8 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 10 Dec 2024 17:57:50 +0000
Subject: [PATCH 04/13] Update CHANGELOG.md for PR #504
---
CHANGELOG.md | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b98ebb13d..701ac3c7c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,19 @@ Changelog is rather internal in nature. See release notes for the public overvie
+- [#504]
+ - **Description:** Remove use of /deep/ in favour of ::v-deep
+ - **Products impact:** none
+ - **Addresses:** -
+ - **Components:** -
+ - **Breaking:** no
+ - **Impacts a11y:** -
+ - **Guidance:** -
+
+[#504]: https://github.com/learningequality/kolibri-design-system/pull/504
+
+
+
- [#645]
- **Description:** Upgrades Node.js to v18, along with Kolibri-Tools to v0.16, Jest to v29 and Nuxt to v2.15
- **Products impact:** none
From 8ed4d51dc0de0c0b2cd73b606b632866eeff026b Mon Sep 17 00:00:00 2001
From: Alex Velez
Date: Tue, 10 Dec 2024 15:37:34 -0500
Subject: [PATCH 05/13] Updates KDS version to 5.0.0-rc11 and fix formatting
issues
---
docs/pages/installation.vue | 13 +++++++++----
docs/pages/kcard.vue | 9 ++++++++-
docs/pages/ktabslist.vue | 30 ++++++++++++++++++++++++------
docs/pages/layout/index.vue | 2 +-
package.json | 2 +-
5 files changed, 43 insertions(+), 13 deletions(-)
diff --git a/docs/pages/installation.vue b/docs/pages/installation.vue
index 17e8491fe..d2ee658bf 100644
--- a/docs/pages/installation.vue
+++ b/docs/pages/installation.vue
@@ -11,11 +11,16 @@
+
- import KThemePlugin from 'kolibri-design-system/lib/KThemePlugin'; import trackInputModality
- from 'kolibri-design-system/lib/styles/trackInputModality'; import trackMediaType from
- 'kolibri-design-system/lib/styles/trackMediaType'; Vue.use(KThemePlugin);
- trackInputModality(); trackMediaType();
+ import KThemePlugin from 'kolibri-design-system/lib/KThemePlugin';
+ import trackInputModality from 'kolibri-design-system/lib/styles/trackInputModality';
+ import trackMediaType from 'kolibri-design-system/lib/styles/trackMediaType';
+
+ Vue.use(KThemePlugin);
+
+ trackInputModality();
+ trackMediaType();
diff --git a/docs/pages/kcard.vue b/docs/pages/kcard.vue
index 7a4f234ae..876a09e12 100644
--- a/docs/pages/kcard.vue
+++ b/docs/pages/kcard.vue
@@ -402,8 +402,15 @@
+
- export default { methods() { onClick() { console.log('Card clicked'); } }, };
+ export default {
+ methods() {
+ onClick() {
+ console.log('Card clicked');
+ }
+ },
+ };
diff --git a/docs/pages/ktabslist.vue b/docs/pages/ktabslist.vue
index 62e04a701..4dd3b87f4 100644
--- a/docs/pages/ktabslist.vue
+++ b/docs/pages/ktabslist.vue
@@ -72,8 +72,16 @@
- data() { return { activeTabId: 'tabLessons', tabs: [ { id: 'tabLessons', label: 'Lessons' },
- { id: 'tabLearners', label: 'Learners' }, { id: 'tabGroups', label: 'Groups' }, ], }; },
+ data() {
+ return {
+ activeTabId: 'tabLessons',
+ tabs: [
+ { id: 'tabLessons', label: 'Lessons' },
+ { id: 'tabLearners', label: 'Learners' },
+ { id: 'tabGroups', label: 'Groups' },
+ ],
+ };
+ },
@@ -96,9 +104,15 @@
- data() { return { tabs: [ { id: 'tabLessons', label: 'Lessons', to: { path: '/lessons' } },
- { id: 'tabLearners', label: 'Learners', to: { path: '/learners' } }, { id: 'tabGroups',
- label: 'Groups', to: { path: '/groups' } }, ], }; },
+ data() {
+ return {
+ tabs: [
+ { id: 'tabLessons', label: 'Lessons', to: { path: '/lessons' } },
+ { id: 'tabLearners', label: 'Learners', to: { path: '/learners' } },
+ { id: 'tabGroups', label: 'Groups', to: { path: '/groups' } },
+ ],
+ };
+ },
@@ -343,7 +357,11 @@
- icons: { tabLessons: 'lesson', tabLearners: 'person', tabGroups: 'people', },
+ icons: {
+ tabLessons: 'lesson',
+ tabLearners: 'person',
+ tabGroups: 'people',
+ },
diff --git a/docs/pages/layout/index.vue b/docs/pages/layout/index.vue
index b889c8309..046ea04e1 100644
--- a/docs/pages/layout/index.vue
+++ b/docs/pages/layout/index.vue
@@ -121,7 +121,7 @@
Responsive layouts in the design system are built using reactive JavaScript state in Vue
components rather than CSS media queries. This is done using
when reactive window's size information
- is needed or when reactive component's
+ is needed or when reactive component's
size information is needed.
diff --git a/package.json b/package.json
index a5a5b7493..2d2865da9 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "kolibri-design-system",
- "version": "5.0.0-rc10",
+ "version": "5.0.0-rc11",
"private": false,
"description": "The Kolibri Design System defines common design patterns and code for use in Kolibri applications",
"repository": {
From a2a6e430fc11ed5ca8fdcb48d881239c40425153 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 10 Dec 2024 20:43:52 +0000
Subject: [PATCH 06/13] Update CHANGELOG.md for PR #863
---
CHANGELOG.md | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 701ac3c7c..7f0ce6022 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,19 @@ Changelog is rather internal in nature. See release notes for the public overvie
+- [#863]
+ - **Description:** Updates KDS version to 5.0.0-rc11
+ - **Products impact:** -.
+ - **Addresses:** -.
+ - **Components:** -.
+ - **Breaking:** -
+ - **Impacts a11y:** -
+ - **Guidance:** -
+
+[#863]: https://github.com/learningequality/kolibri-design-system/pull/863
+
+
+
- [#504]
- **Description:** Remove use of /deep/ in favour of ::v-deep
- **Products impact:** none
From af8c2ebe8e22bea340d502ecbdaf7ae9a8718701 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 10 Dec 2024 20:45:21 +0000
Subject: [PATCH 07/13] Bump nanoid from 3.3.7 to 3.3.8
Bumps [nanoid](https://github.com/ai/nanoid) from 3.3.7 to 3.3.8.
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ai/nanoid/compare/3.3.7...3.3.8)
---
updated-dependencies:
- dependency-name: nanoid
dependency-type: indirect
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 2e8e574b9..2bca43c90 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -9140,9 +9140,9 @@ nan@^2.17.0:
integrity sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw==
nanoid@^3.1.23, nanoid@^3.3.7:
- version "3.3.7"
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8"
- integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
+ version "3.3.8"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf"
+ integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==
nanomatch@^1.2.9:
version "1.2.13"
From c0f7fc87a9b4d3c805707e0c8b1a8d87d0e91099 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 11 Dec 2024 01:01:01 +0000
Subject: [PATCH 08/13] Bump vue-docgen-api from 4.78.0 to 4.79.2
Bumps [vue-docgen-api](https://github.com/vue-styleguidist/vue-styleguidist/tree/HEAD/packages/vue-docgen-api) from 4.78.0 to 4.79.2.
- [Release notes](https://github.com/vue-styleguidist/vue-styleguidist/releases)
- [Changelog](https://github.com/vue-styleguidist/vue-styleguidist/blob/dev/packages/vue-docgen-api/CHANGELOG.md)
- [Commits](https://github.com/vue-styleguidist/vue-styleguidist/commits/vue-docgen-api@4.79.2/packages/vue-docgen-api)
---
updated-dependencies:
- dependency-name: vue-docgen-api
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 38 +++++++-------------------------------
1 file changed, 7 insertions(+), 31 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 2e8e574b9..a1fbcd73b 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -362,11 +362,6 @@
dependencies:
"@babel/types" "^7.24.5"
-"@babel/helper-string-parser@^7.24.1":
- version "7.24.1"
- resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz"
- integrity sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==
-
"@babel/helper-string-parser@^7.25.9":
version "7.25.9"
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz#1aabb72ee72ed35789b4bbcad3ca2862ce614e8c"
@@ -437,12 +432,7 @@
js-tokens "^4.0.0"
picocolors "^1.0.0"
-"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.15.0", "@babel/parser@^7.15.4", "@babel/parser@^7.15.5", "@babel/parser@^7.21.4", "@babel/parser@^7.23.9", "@babel/parser@^7.24.0", "@babel/parser@^7.24.5", "@babel/parser@^7.6.0", "@babel/parser@^7.9.6":
- version "7.24.5"
- resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.24.5.tgz"
- integrity sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==
-
-"@babel/parser@^7.23.5", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.3":
+"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.15.0", "@babel/parser@^7.15.4", "@babel/parser@^7.15.5", "@babel/parser@^7.23.5", "@babel/parser@^7.23.9", "@babel/parser@^7.24.0", "@babel/parser@^7.24.5", "@babel/parser@^7.24.7", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.3", "@babel/parser@^7.6.0", "@babel/parser@^7.9.6":
version "7.26.3"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.3.tgz#8c51c5db6ddf08134af1ddbacf16aaab48bac234"
integrity sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==
@@ -1239,16 +1229,7 @@
debug "^4.3.1"
globals "^11.1.0"
-"@babel/types@^7.0.0", "@babel/types@^7.15.0", "@babel/types@^7.15.4", "@babel/types@^7.21.4", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.24.0", "@babel/types@^7.24.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.6.1", "@babel/types@^7.9.6":
- version "7.24.5"
- resolved "https://registry.npmjs.org/@babel/types/-/types-7.24.5.tgz"
- integrity sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==
- dependencies:
- "@babel/helper-string-parser" "^7.24.1"
- "@babel/helper-validator-identifier" "^7.24.5"
- to-fast-properties "^2.0.0"
-
-"@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.26.3":
+"@babel/types@^7.0.0", "@babel/types@^7.15.0", "@babel/types@^7.15.4", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.24.0", "@babel/types@^7.24.5", "@babel/types@^7.24.7", "@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.26.3", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.6.1", "@babel/types@^7.9.6":
version "7.26.3"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.3.tgz#37e79830f04c2b5687acc77db97fbc75fb81f3c0"
integrity sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==
@@ -12808,11 +12789,6 @@ to-fast-properties@^1.0.3:
resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz"
integrity sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=
-to-fast-properties@^2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"
- integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
-
to-object-path@^0.3.0:
version "0.3.0"
resolved "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz"
@@ -13330,12 +13306,12 @@ vue-client-only@^2.1.0:
integrity sha512-vKl1skEKn8EK9f8P2ZzhRnuaRHLHrlt1sbRmazlvsx6EiC3A8oWF8YCBrMJzoN+W3OnElwIGbVjsx6/xelY1AA==
vue-docgen-api@^4.56.4:
- version "4.78.0"
- resolved "https://registry.npmjs.org/vue-docgen-api/-/vue-docgen-api-4.78.0.tgz"
- integrity sha512-RsZf+qzTttCCAN9v7AKmBykc2QWmO8csVk1c2aXeOktomSOu0NA7sgK4ObuRB5lpmtOvTnwuxssyYmxXxABr+A==
+ version "4.79.2"
+ resolved "https://registry.yarnpkg.com/vue-docgen-api/-/vue-docgen-api-4.79.2.tgz#de2c499601472f385dc28006742e2208ba927306"
+ integrity sha512-n9ENAcs+40awPZMsas7STqjkZiVlIjxIKgiJr5rSohDP0/JCrD9VtlzNojafsA1MChm/hz2h3PDtUedx3lbgfA==
dependencies:
- "@babel/parser" "^7.21.4"
- "@babel/types" "^7.21.4"
+ "@babel/parser" "^7.24.7"
+ "@babel/types" "^7.24.7"
"@vue/compiler-dom" "^3.2.0"
"@vue/compiler-sfc" "^3.2.0"
ast-types "^0.16.1"
From caf035b25f06b0b99a249fbba57ec38ec647ab78 Mon Sep 17 00:00:00 2001
From: Richard Tibbles
Date: Tue, 10 Dec 2024 18:27:26 -0800
Subject: [PATCH 09/13] Revert inadvertent changes to KLogo path during
linting. Choose to ignore linting max length instead.
---
lib/KLogo/index.vue | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/lib/KLogo/index.vue b/lib/KLogo/index.vue
index b1cef7fd0..d70a9761d 100644
--- a/lib/KLogo/index.vue
+++ b/lib/KLogo/index.vue
@@ -81,22 +81,25 @@
/>
+
+
+
Date: Wed, 11 Dec 2024 02:44:36 +0000
Subject: [PATCH 10/13] Update CHANGELOG.md for PR #864
---
CHANGELOG.md | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7f0ce6022..6048dad26 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,19 @@ Changelog is rather internal in nature. See release notes for the public overvie
+- [#864]
+ - **Description:** Bump nanoid from 3.3.7 to 3.3.8
+ - **Products impact:** Dev Dependency upgrade
+ - **Addresses:** -
+ - **Components:** -
+ - **Breaking:** -
+ - **Impacts a11y:** -
+ - **Guidance:** -
+
+[#864]: https://github.com/learningequality/kolibri-design-system/pull/864
+
+
+
- [#863]
- **Description:** Updates KDS version to 5.0.0-rc11
- **Products impact:** -.
From 6bff76571368f836ea3a690bd9d7cdb240200d1c Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 11 Dec 2024 02:46:54 +0000
Subject: [PATCH 11/13] Update CHANGELOG.md for PR #866
---
CHANGELOG.md | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6048dad26..bde9b0fa6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,19 @@ Changelog is rather internal in nature. See release notes for the public overvie
+- [#866]
+ - **Description:** Bump vue-docgen-api from 4.78.0 to 4.79.2
+ - **Products impact:** Dev Dependency upgrade
+ - **Addresses:** -
+ - **Components:** -
+ - **Breaking:** -
+ - **Impacts a11y:** -
+ - **Guidance:** -
+
+[#866]: https://github.com/learningequality/kolibri-design-system/pull/866
+
+
+
- [#864]
- **Description:** Bump nanoid from 3.3.7 to 3.3.8
- **Products impact:** Dev Dependency upgrade
From 86f5ad90f617003d62cb702014713555bfc17cb6 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 11 Dec 2024 02:58:15 +0000
Subject: [PATCH 12/13] Update CHANGELOG.md for PR #849
---
CHANGELOG.md | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bde9b0fa6..534bab3e0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,19 @@ Changelog is rather internal in nature. See release notes for the public overvie
+- [#849]
+ - **Description:** A Reusable action is added to .github repo. This PR makes use of it.
+ - **Products impact:** none
+ - **Addresses:** -
+ - **Components:** -
+ - **Breaking:** -
+ - **Impacts a11y:** -
+ - **Guidance:** -
+
+[#849]: https://github.com/learningequality/kolibri-design-system/pull/849
+
+
+
- [#866]
- **Description:** Bump vue-docgen-api from 4.78.0 to 4.79.2
- **Products impact:** Dev Dependency upgrade
From 6c6b208a62e1fa8e0b3fea2bee937208aa8ccc70 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 11 Dec 2024 11:56:36 +0000
Subject: [PATCH 13/13] Update CHANGELOG.md for PR #868
---
CHANGELOG.md | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 534bab3e0..1fad642d2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,19 @@ Changelog is rather internal in nature. See release notes for the public overvie
+- [#868]
+ - **Description:** Revert regression in KLogo display
+ - **Products impact:** bugfix
+ - **Addresses:** -
+ - **Components:** KLogo
+ - **Breaking:** no
+ - **Impacts a11y:** no
+ - **Guidance:** -
+
+[#868]: https://github.com/learningequality/kolibri-design-system/pull/868
+
+
+
- [#849]
- **Description:** A Reusable action is added to .github repo. This PR makes use of it.
- **Products impact:** none