Skip to content

Commit

Permalink
chore(release): Prepare for 2.9.2 release
Browse files Browse the repository at this point in the history
Signed-off-by: Jonas <[email protected]>
  • Loading branch information
mejo- committed Dec 6, 2023
1 parent f9d6598 commit 3dcf043
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 2.9.2 - 2023.12.06

### 🐛Fixes
* 📎 Fix several issues with displaying attachments. (#620, #964)
* 🔎 Always search for page content, not only in app realm.
* 📌 Dashboard: respect passed in item limit. Thanks @jld3103.
* 📋 Changelog: Correct styling. Thanks @SimJoSt.

### 🌎Translations
* 🗣️ Translation updates from Transifex. Thanks to all contributors.

### 🚧Updates & Tooling
* ⬆️ Update NPM dependencies.
* ⬆️ Update PHP composer dependencies.


## 2.9.1 - 2023.11.14

### 🐛Fixes
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ In your Nextcloud instance, simply navigate to **»Apps«**, find the
**»Circles«** and **»Collectives«** apps and enable them.
]]></description>
<version>2.9.1</version>
<version>2.9.2</version>
<licence>agpl</licence>
<author>CollectiveCloud Team</author>
<namespace>Collectives</namespace>
Expand Down
11 changes: 6 additions & 5 deletions cypress/e2e/page-landingpage.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ describe('Page landing page', function() {
cy.circleFind(collective).circleAddMember('john')
cy.seedPage('Page 1', '', 'Readme.md')
cy.seedPage('Page 2', '', 'Readme.md')
// Wait 1 second to make sure that page order by time is right
cy.wait(1000) // eslint-disable-line cypress/no-unnecessary-waiting
cy.seedPage('Page 3', '', 'Readme.md')
})

Expand All @@ -49,7 +51,7 @@ describe('Page landing page', function() {
describe('Displays recent pages', function() {
it('Allows to toggle recent pages widget', function() {
cy.get('.recent-pages-widget .recent-page-tile')
.contains('Page 2')
.contains('Page 3')

cy.get('.recent-pages-widget .recent-pages-title')
.click()
Expand All @@ -63,15 +65,14 @@ describe('Page landing page', function() {
cy.get('.recent-pages-widget .recent-pages-title')
.click()
cy.get('.recent-pages-widget .recent-page-tile')
.contains('Page 2')
.click()
.contains('Page 3')
})

it('Allows to open page from recent pages widget', function() {
cy.get('.recent-pages-widget .recent-page-tile')
.contains('Page 2')
.contains('Page 3')
.click()
cy.url().should('include', `/apps/collectives/${encodeURIComponent(collective)}/${encodeURIComponent('Page 2')}`)
cy.url().should('include', `/apps/collectives/${encodeURIComponent(collective)}/${encodeURIComponent('Page 3')}`)
})
})

Expand Down

0 comments on commit 3dcf043

Please sign in to comment.