Cannot find latest version of highstock-all.js - charts

I have used highstock-all.js having version - v4.1.10 (2015-12-07).
Now I want to upgrade it to latest version of v5.0.0 (2016-09-29) but could not find it anywhere in the downloads section http://code.highcharts.com/
Where can I find this? Is highstock-all.js a combination of highstock.js, highcharts-3d.js, highcharts-more.js? Will it work if I use combination of latest version of these files to get functionality of highstock-all.js?
P.S. It would be much better if I can get highstock-all.js latest version directly. Thank you.

Related

How to download a specific version of Lens (k8slens)

I want to install a previous, specific version of k8slens (https://k8slens.dev/) but impossible for me to find this (neither for mac nor windows !) Do I have to download the source code and rebuild it? Even with this there is no "install" section in the makefile !
Why is it so difficult to find a specific version?
Yes, you can easily download the source code for a specific version tag and the compile and use it. The list of tags is here.
Once you get the source code of your desired version you can generate the binary with :
make build
And then simply run that binary to get your required version. Just know that install simply means copying a compiled binary in a known Path of the system so it can be executed. There is nothing special about it.
The question was made some time ago but just in case you haven't reached the answer yet, One thing I did to solve this problem was that i went to the lens repo : https://github.com/lensapp/lens/releases and search through the old release versions seeking for a binary asset (.exe) (the news version provide the source code but not the binary) then i managed to find the binary of the version 4.2.3. ( release in Apr 26, 2021)
Worked perfectly for me. Hope it helps

Where can I safely download older TYPO3 releases?

Back then, I was able to download older subversions of TYPO3 CMS on SourceForge which saved me a lot of time and anger.
Now I am facing a problem and I think it is a bug in the current used version. I would like to test it with an other instance, but as it seems it is not being stored anywhere. I will use an vulnerable version for now, but that is not what I actually want.
Maybe I've overseen a link or something. Do you know where I could find a list of all downloadable TYPO3 Versions? I know I can google it, but I don't want to use 3rd party sources ether...
I'd say that TYPO3 on SourceForge should still be updated...
All versions can be downloaded from get.typo3.org directly. Example for a very old 4.5:
wget --content-disposition https://get.typo3.org/4.5.38
You can use https://get.typo3.org/ for this. Simply append the version number to the URL to download the desired version, e.g. https://get.typo3.org/8.7.15 to download version 8.7.15 of TYPO3 (8.7.16 is the latest ATM.)
If you use Composer you can enforce a downgrade with something like this:
composer require typo3/cms 8.7.15
Or:
composer require typo3/cms-core:8.7.15 typo3/cms-backend:8.7.15 ...
Notice that this replaces the version constraint in your Composer manifest with a fixed version which should be changed back as soon as possible.

How do we use the latest API features?

I am developing an extension for VSCode, at https://code.visualstudio.com/docs/extensionAPI/vscode-api there are some functions which do not seem to be available yet:
vscode.window.withProgress(...)
vscode.window.showSaveDialog(...)
I have the following on my depedencies:
"vscode": "^1.1.14"
I am missing something to be able to use certain API functions ?
You may want to upgrade vscode dependency version
vscode.window.withProgress was introduced with vscode 1.12 (https://code.visualstudio.com/updates/v1_12)
As vscode try to keep itself updated you can use the latest vscode(1.21.1) version or 2-3 months old(1.17.0)
The vscode version needs to be changed on the packages.json "engines" section.

pysnmp-4.4.4 not available in source path

pysnmp-4.4.4.tar.gz is not available in the following path
https://pypi.python.org/packages/source/p/pysnmp/pysnmp-4.4.4.tar.gz
but I am able to get older releases.
Any idea why?
I guess this has something to do with the recent PyPI overhaul. But the package is available through both web UI and pip.
Where do you get this direct link? May be it is not stable and should not be hardcoded anywhere?

Vaadin-Datepicker Min/Max limit not working

I got two Vaadin-datepickers in a Polymer Project. One with a start-date and one with an end-date. I want to make sure that the end-date is always after the start-date. I read the API-Documentation where they say you can use the min max properties.
<vaadin-date-picker label="Start date" value="{{item.startDate}}"></vaadin-date-picker>
<vaadin-date-picker label="End date" min="{{item.startDate}}" value="{{item.endDate}}"></vaadin-date-picker>
With the above example nothing seems to happen?
I did another test to check if the vars are defined and if maybe the format was incorrect
<vaadin-date-picker label="End date" min="2000-01-01" max="2000-12-31" value="{{item.endDate}}"></vaadin-date-picker>
I also checked which version I'm using but that's all up-to-date
1.1.4
Does anybody know what I'm doing wrong?
As #Tomek pointed out, min and max were added in 1.2.0-alpha1 (not yet released). Your code looks correct and would work if using the newer version.
When running bower install vaadin-date-picker, Bower installs the latest official release, which is currently 1.1.4. You could install 1.2.0-beta1 with this:
bower install --save vaadin-date-picker#1.2.0-beta1
Min/Max limits are not supported in 1.1.4 release.
From GitHub documentation :
https://github.com/vaadin/vaadin-date-picker/releases/tag/v1.2.0-alpha1
1.2.0-rc1 was also released today. You can install it with bower:
bower install vaadin-date-picker#1.2.0-rc1