Release 2.3.0 #44
No reviewers
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: friendica/friendica-directory#44
Loading…
Reference in a new issue
No description provided.
Delete branch "release/2.3.0"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Thanks @tobiasd for the translation update!
You have this already in production and it is working well?
Thanks for the reminder, I took every step but the last (running
composer install
) on https://dir.friendica.mrpetovan.com and I found a bug related to the move fromcontainer-interop/container-interop
topsr/container
.So, it is working now as expected?
Now, yes.
@ -48,3 +48,3 @@
if (!$stable_version) {
$stable_version = trim(file_get_contents('https://git.friendi.ca/friendica/friendica/raw/branch/master/VERSION'));
$stable_version = trim(file_get_contents('https://git.friendi.ca/friendica/friendica/raw/branch/stable/VERSION'));
$this->simplecache->set('stable_version', $stable_version);
Should I create a stable branch, branced off from the current master branch, for this to work already or is this only preparation?
@ -48,3 +48,3 @@
if (!$stable_version) {
$stable_version = trim(file_get_contents('https://git.friendi.ca/friendica/friendica/raw/branch/master/VERSION'));
$stable_version = trim(file_get_contents('https://git.friendi.ca/friendica/friendica/raw/branch/stable/VERSION'));
$this->simplecache->set('stable_version', $stable_version);
The stable branch forked from master already exists on my local fork, it just needs to be created on the main repo
@ -48,3 +48,3 @@
if (!$stable_version) {
$stable_version = trim(file_get_contents('https://git.friendi.ca/friendica/friendica/raw/branch/master/VERSION'));
$stable_version = trim(file_get_contents('https://git.friendi.ca/friendica/friendica/raw/branch/stable/VERSION'));
$this->simplecache->set('stable_version', $stable_version);
But it should be pushed to the repositories so that the directory can find the information right?
@ -48,3 +48,3 @@
if (!$stable_version) {
$stable_version = trim(file_get_contents('https://git.friendi.ca/friendica/friendica/raw/branch/master/VERSION'));
$stable_version = trim(file_get_contents('https://git.friendi.ca/friendica/friendica/raw/branch/stable/VERSION'));
$this->simplecache->set('stable_version', $stable_version);
Yes.
@ -48,3 +48,3 @@
if (!$stable_version) {
$stable_version = trim(file_get_contents('https://git.friendi.ca/friendica/friendica/raw/branch/master/VERSION'));
$stable_version = trim(file_get_contents('https://git.friendi.ca/friendica/friendica/raw/branch/stable/VERSION'));
$this->simplecache->set('stable_version', $stable_version);
Never mind, it already exists: https://github.com/friendica/friendica-directory/tree/stable
I thought you checked and that I just created it on my own fork.
@ -48,3 +48,3 @@
if (!$stable_version) {
$stable_version = trim(file_get_contents('https://git.friendi.ca/friendica/friendica/raw/branch/master/VERSION'));
$stable_version = trim(file_get_contents('https://git.friendi.ca/friendica/friendica/raw/branch/stable/VERSION'));
$this->simplecache->set('stable_version', $stable_version);
But the code references the Friendica repository, not the directory repository.
@ -48,3 +48,3 @@
if (!$stable_version) {
$stable_version = trim(file_get_contents('https://git.friendi.ca/friendica/friendica/raw/branch/master/VERSION'));
$stable_version = trim(file_get_contents('https://git.friendi.ca/friendica/friendica/raw/branch/stable/VERSION'));
$this->simplecache->set('stable_version', $stable_version);
Right, sorry I misread, let me fork it from master. Aaand done.
So... to run the released version I need to git-checkout the stable branch, right?
Yes, although I'll bring
master
to the same release commit one last time.