pull/4829/head v6.72
Lauri Ojansivu 2 years ago
parent 7a00f3628a
commit a22319f3ab
  1. 8
      CHANGELOG.md
  2. 2
      Stackerfile.yml
  3. 2
      package-lock.json
  4. 2
      package.json
  5. 6
      public/api/wekan.html
  6. 2
      public/api/wekan.yml
  7. 4
      sandstorm-pkgdef.capnp
  8. 8
      snapcraft.yaml

@ -5,12 +5,12 @@ Download section.
[How to upgrade WeKan](https://github.com/wekan/wekan/issues/4585)
# Upcoming WeKan ® release
# v6.72 2023-02-02 WeKan ® release
This release adds the following updates:
- [Upgraded to Meteor 2.11.0-beta.0 for MongoDB 6.x support https://github.com/meteor/meteor/pull/12470](https://github.com/wekan/wekan/commit/38af077a94a9dd837cfa556b46ad13e13569cecb).
Thanks to Meteor developers.
- [Change back to MongoDB 5, shell and tool](https://github.com/wekan/wekan/commit/1733203f8e236bd62ef34ea1878d3a63db5eccc4).
Thanks to xet7.
- Updated translations to use new Go-based transifex-client https://developers.transifex.com/docs/cli ,
but it seems now all translations look like 100% translated, maybe something is wrong,
so discussing about it with Transifex Support.
@ -18,8 +18,6 @@ This release adds the following updates:
[Part 2](https://github.com/wekan/wekan/commit/c7330a47a02efc609a383ddf8d4ad6f409595e01),
[Part 3](https://github.com/wekan/wekan/commit/7d7c45c33f9eaa3e4db90758d97c49363f47d0f3),
[Part 4](https://github.com/wekan/wekan/commit/bed2669ff8e136d4aedbd66bc2dfd73c38e18469).
- [Upgrade Snap Candidate to MongoDB 6.0.4](https://github.com/wekan/wekan/commit/0043fe010f83a4849bf2718c250c5efeac5ddc01).
Thanks to MongoDB developers.
- Updated dependencies
[Part 1](https://github.com/wekan/wekan/commit/362fb66b84e7200c3f7482ab8b79ae8ac0b11832),
[Part 1](https://github.com/wekan/wekan/commit/b4963d872b9dc2f19dd3fe418fdbf4f7364a7a47),

@ -1,5 +1,5 @@
appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928
appVersion: "v6.71.0"
appVersion: "v6.72.0"
files:
userUploads:
- README.md

2
package-lock.json generated

@ -1,6 +1,6 @@
{
"name": "wekan",
"version": "v6.71.0",
"version": "v6.72.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

@ -1,6 +1,6 @@
{
"name": "wekan",
"version": "v6.71.0",
"version": "v6.72.0",
"description": "Open-Source kanban",
"private": true,
"repository": {

@ -7,7 +7,7 @@
<meta charset="utf-8">
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Wekan REST API v6.71</title>
<title>Wekan REST API v6.72</title>
<style>
</style>
@ -1558,7 +1558,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
<ul class="toc-list-h1">
<li>
<a href="#wekan-rest-api" class="toc-h1 toc-link" data-title="Wekan REST API v6.71">Wekan REST API v6.71</a>
<a href="#wekan-rest-api" class="toc-h1 toc-link" data-title="Wekan REST API v6.72">Wekan REST API v6.72</a>
</li>
@ -2161,7 +2161,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
<div class="page-wrapper">
<div class="dark-box"></div>
<div class="content">
<h1 id="wekan-rest-api">Wekan REST API v6.71</h1>
<h1 id="wekan-rest-api">Wekan REST API v6.72</h1>
<blockquote>
<p>Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.</p>
</blockquote>

@ -1,7 +1,7 @@
swagger: '2.0'
info:
title: Wekan REST API
version: v6.71
version: v6.72
description: |
The REST API allows you to control and extend Wekan with ease.

@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
appTitle = (defaultText = "Wekan"),
# The name of the app as it is displayed to the user.
appVersion = 671,
appVersion = 672,
# Increment this for every release.
appMarketingVersion = (defaultText = "6.71.0~2023-01-18"),
appMarketingVersion = (defaultText = "6.72.0~2023-02-02"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,

@ -1,5 +1,5 @@
name: wekan
version: '6.71'
version: '6.72'
base: core20
summary: Open Source kanban
description: |
@ -184,9 +184,9 @@ parts:
# Cleanup
mkdir .build
cd .build
wget https://github.com/wekan/wekan/releases/download/v6.71/wekan-6.71-amd64.zip
unzip wekan-6.71-amd64.zip
rm wekan-6.71-amd64.zip
wget https://github.com/wekan/wekan/releases/download/v6.72/wekan-6.72-amd64.zip
unzip wekan-6.72-amd64.zip
rm wekan-6.72-amd64.zip
cd ..
##cd .build/bundle
##find . -type d -name '*-garbage*' | xargs rm -rf

Loading…
Cancel
Save