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

chore: update version to 2.7 #2424

Merged
merged 1 commit into from
Apr 12, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.development
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VITE_ZONE_CREATION_FLOW=enabled
# The following are templating placeholders for the index.html file. They’re going to be replaced using server-side templating when serving the GUI application in production.
VITE_BASE_GUI_PATH=/gui
VITE_KUMA_CONFIG='{"baseGuiPath":"/gui","apiUrl":"http://localhost:5681","version":"2.6.0","product":"Kuma","mode":"global","environment":"universal","storeType":"postgres","apiReadOnly":false}'
VITE_KUMA_CONFIG='{"baseGuiPath":"/gui","apiUrl":"http://localhost:5681","version":"2.7.0","product":"Kuma","mode":"global","environment":"universal","storeType":"postgres","apiReadOnly":false}'
2 changes: 1 addition & 1 deletion .env.preview
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VITE_ZONE_CREATION_FLOW=enabled
# The following are templating placeholders for the index.html file. They’re going to be replaced using server-side templating when serving the GUI application in production.
VITE_BASE_GUI_PATH=/gui
VITE_KUMA_CONFIG='{"baseGuiPath":"/gui","apiUrl":"http://localhost:5681","version":"2.6.0","product":"Kuma","mode":"global","environment":"universal","storeType":"postgres","apiReadOnly":false}'
VITE_KUMA_CONFIG='{"baseGuiPath":"/gui","apiUrl":"http://localhost:5681","version":"2.7.0","product":"Kuma","mode":"global","environment":"universal","storeType":"postgres","apiReadOnly":false}'
18 changes: 9 additions & 9 deletions features/docs/Index.feature
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Feature: docs / index
Given the environment
"""
KUMA_MODE: global
KUMA_VERSION: 2.6.0
KUMA_VERSION: 2.7.0
KUMA_MESH_COUNT: 3
KUMA_ZONE_COUNT: 3
KUMA_SUBSCRIPTION_COUNT: 1
Expand All @@ -17,8 +17,8 @@ Feature: docs / index
And I wait for 500 ms
Then screenshot the ".background-image" element to "onboarding"

# Don't remove this comment, uncomment for test.only.
# @only
# Don't remove this comment, uncomment for test.only.
# @only
Scenario: Screenshot mesh overview
Given the URL "/mesh-insights" responds with
"""
Expand Down Expand Up @@ -67,15 +67,15 @@ Feature: docs / index
Then screenshot the "#app" element to "dataplane-config"

Scenario: Screenshot dataplane policies
Given the environment
"""
Given the environment
"""
KUMA_DATAPLANE_PROXY_RULE_ENABLED: false
KUMA_DATAPLANE_RULE_COUNT: 2
KUMA_DATAPLANE_TO_RULE_COUNT: 2
KUMA_DATAPLANE_FROM_RULE_COUNT: 0
"""
And the URL "/meshes/default/dataplanes/redis-cdccdb4a9b-qjcjs.driver.kuma-system-proxy-0/_rules" responds with
"""
"""
And the URL "/meshes/default/dataplanes/redis-cdccdb4a9b-qjcjs.driver.kuma-system-proxy-0/_rules" responds with
"""
body:
rules:
- type: MeshHTTPRoute
Expand Down Expand Up @@ -123,7 +123,7 @@ Feature: docs / index
- mesh: default
name: on-service
type: MeshTimeout
"""
"""

When I visit the "/meshes/default/data-planes/redis-cdccdb4a9b-qjcjs.driver.kuma-system-proxy-0/policies" URL
And I click the "[data-testid='to-rule-list'] li:nth-child(1) button" element
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kuma-gui",
"version": "2.6.0",
"version": "2.7.0",
"private": true,
"description": "Kuma Manager",
"author": "Kong",
Expand Down
2 changes: 1 addition & 1 deletion src/services/env/Env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export function getPathConfigDefault(apiUrlDefault: string = ''): PathConfig {
* **Example**: `'http://localhost:5681'`
*/
apiUrl: apiUrlDefault,
version: '2.6.0',
version: '2.7.0',
product: 'Kuma',
mode: 'global',
environment: 'universal',
Expand Down