Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 16.2.3 #3313

Merged
merged 4 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ Changelog

This document describes changes between each past release.

16.3.0 (unreleased)
16.2.3 (2023-12-05)
-------------------

- Nothing changed yet.
- Upgraded Kinto Admin to `v2.1.1 <https://github.com/Kinto/kinto-admin/releases/tag/v2.1.1>`_


16.2.2 (2023-11-21)
Expand Down
2 changes: 1 addition & 1 deletion kinto/plugins/admin/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.0
2.1.1
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = kinto
version = 16.3.0.dev0
version = 16.2.3
description = Kinto Web Service - Store, Sync, Share, and Self-Host.
long_description = file: README.rst, CHANGELOG.rst, CONTRIBUTORS.rst
long_description_content_type = text/x-rst
Expand Down
3 changes: 1 addition & 2 deletions tests/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,4 @@ def test_admin_ui_renders_properly(self):
# Navigate to simple review page (uses React Hooks and broke a few times)
review_url = base_url + "#/buckets/workspace/collections/articles/simple-review"
self.driver.get(review_url)
message = self.driver.find_element(By.CSS_SELECTOR, ".simple-review-blocked-message")
self.assertTrue(message.is_displayed())
self.assertTrue(self.driver.find_element(By.CSS_SELECTOR, ".alert-warning").is_displayed())