- Issue created by @joshuautley
- π¦πΊAustralia mingsong π¦πΊ
I try
composer require 'drupal/fullcalendar_view:^5.1'
and I got the latest version, which is 5.1.12 install on my test site.
I can't reproduce the issue reported.
- πΊπΈUnited States joshuautley
@Mingsong, that's the same thing I did. I just have to declare the php version because some of my modules require that.
I ended up getting around the issue by downloading the .tar file, extracting it and replacing the files with the new version.
I also deleted my composer.lock file and ran composer update. During that, I noticed the lock file wrote in version 5.1.11
What version is declared in your lock file?
- πΊπΈUnited States joshuautley
Any thoughts as to why mine locks to version 5.1.11?
- π¦πΊAustralia mingsong π¦πΊ
Don't know.
Let's see if others come across a similar problem and provide more details about it. - Status changed to Postponed: needs info
over 1 year ago 6:40am 11 April 2023 - πͺπΈSpain marthinal
I have the same issue
$ ddev composer show -a drupal/fullcalendar_view name : drupal/fullcalendar_view descrip. : This is a lightweight View plugin module that provides a calendar view format powered by FullCalendar JavaScript. keywords : Drupal, fullcalendar_view versions : 6.x-dev, 5.x-dev, * 5.1.11, 5.1.10, 5.1.9, 5.1.8, 5.1.7, 5.1.6, 5.1.5, 5.1.4, 5.1.3, 5.1.2, 5.1.1, 5.1.0, 5.0.8, 5.0.7, 5.0.6, 5.0.5, 5.0.4, 5.0.3, 5.0.2, 5.0.1, 5.0.0, 4.5.0, 4.4.0, 4.3.0, 4.2.0, 4.1.0, 4.0.0, 3.x-dev, 2.x-dev, 2.8.0, 2.7.0, 2.6.0, 2.5.0, 2.4.0, 2.3.0, 2.2.0, 2.1.0, 2.0.0, 2.0.0-rc10, 2.0.0-rc9, 2.0.0-rc8, 2.0.0-rc7, 2.0.0-rc6, 2.0.0-rc5, 2.0.0-rc4, 2.0.0-rc3, 2.0.0-rc2, 2.0.0-rc1, 1.x-dev, 1.0.0-rc3, 1.0.0-rc2, 1.0.0-rc1, 1.0.0-beta2, 1.0.0-beta1, 1.0.0-alpha10, 1.0.0-alpha7, 1.0.0-alpha6, 1.0.0-alpha5, 1.0.0-alpha4, 1.0.0-alpha3, 1.0.0-alpha2, 1.0.0-alpha1, dev-6.x, dev-5.x, dev-3.x, dev-2.x, dev-1.x type : drupal-module license : GNU General Public License v2.0 or later (GPL-2.0+) (OSI approved) https://spdx.org/licenses/GPL-2.0+.html#licenseText homepage : http://drupal.org/project/fullcalendar_view source : [git] https://git.drupalcode.org/project/fullcalendar_view.git 5.1.11 dist : [zip] https://ftp.drupal.org/files/projects/fullcalendar_view-5.1.11.zip 5.1.11 path : /var/www/html/web/modules/contrib/fullcalendar_view names : drupal/fullcalendar_view support source : http://cgit.drupalcode.org/fullcalendar_view issues : http://drupal.org/project/issues/fullcalendar_view requires drupal/core ^9.2.0 || ^10
- πΊπΈUnited States fchandler
I have the same issue. From composer json:
"drupal/fullcalendar_view": "^5.1",From composer lock:
"name": "drupal/fullcalendar_view",
"version": "5.1.11",
"source": {
"type": "git",
"url": "https://git.drupalcode.org/project/fullcalendar_view.git",
"reference": "5.1.11"
},
"dist": {
"type": "zip",
"url": "https://ftp.drupal.org/files/projects/fullcalendar_view-5.1.11.zip",
"reference": "5.1.11",
"shasum": "966bdadb7213a03886050ac36efbf0613bbf4157"
},
"require": {
"drupal/core": "^9.2.0 || ^10"
},
"type": "drupal-module",
"extra": {
"drupal": {
"version": "5.1.11",
"datestamp": "1676726166",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
}
}
}, - πΊπΈUnited States fchandler
I updated my composer from 2.4.4 to 2.5.5, and Full Calendar updated successfully.
- Status changed to Closed: works as designed
over 1 year ago 1:19am 17 April 2023 - π¦πΊAustralia mingsong π¦πΊ
Thanks @Francis for the confirmation.
As Francis suggested above, this issue is out of scope of this module.
- πΊπΈUnited States joshuautley
@fchandler that seems to have worked for me as well. Thank you.