| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | chore(main): release 1.2.1 (#1355)v1.2.1 | williambotman[bot] | 2023-06-13 | 1 | -2/+2 |
| | | |||||
| * | fix(providers): fix some client providers and add some more (#1354) | William Boman | 2023-06-13 | 6 | -6/+59 |
| | | |||||
| * | chore(main): release 1.2.0 (#1348)v1.2.0 | williambotman[bot] | 2023-06-13 | 1 | -3/+3 |
| | | |||||
| * | feat(command): improve completion for :MasonInstall (#1353) | William Boman | 2023-06-13 | 14 | -26/+145 |
| | | | | | Now also supports completing versions if completion is triggered when specifying a version, e.g. "rust-analyzer@". | ||||
| * | fix(functional): strip_prefix and strip_suffix should not use patterns (#1352) | William Boman | 2023-06-13 | 1 | -8/+14 |
| | | |||||
| * | fix(async): always check channel state (#1351) | William Boman | 2023-06-13 | 1 | -6/+7 |
| | | |||||
| * | fix(command): run :MasonUpdate synchronously in headless mode (#1347) | William Boman | 2023-06-12 | 1 | -4/+18 |
| | | |||||
| * | chore(main): release 1.1.1 (#1333)v1.1.1 | williambotman[bot] | 2023-05-29 | 1 | -2/+2 |
| | | |||||
| * | fix(ui): improve search mode UI and remove redundant whitespaces (#1332) | William Boman | 2023-05-29 | 1 | -10/+14 |
| | | |||||
| * | chore(main): release 1.1.0 (#1269)v1.1.0 | williambotman[bot] | 2023-05-18 | 1 | -3/+3 |
| | | |||||
| * | feat(installer): lock package installation (#1290) | William Boman | 2023-05-18 | 2 | -43/+78 |
| | | |||||
| * | fix(ui): use vim.cmd("") for nvim-0.7.0 compatibility (#1307) | William Boman | 2023-05-17 | 1 | -1/+1 |
| | | |||||
| * | feat(ui): add search mode (#1306) | William Boman | 2023-05-17 | 5 | -1/+63 |
| | | |||||
| * | feat(ui): display "update all" hint (#1296) | William Boman | 2023-05-12 | 2 | -10/+43 |
| | | |||||
| * | fix(sources): don't skip installation if fixed version is not currently ↵ | William Boman | 2023-05-11 | 1 | -2/+2 |
| | | | | | installed (#1297) | ||||
| * | chore(health): include path and providers settings (#1294) | William Boman | 2023-05-09 | 1 | -2/+6 |
| | | |||||
| * | chore(Optional): add :and_then() (#1270) | William Boman | 2023-04-28 | 1 | -0/+10 |
| | | |||||
| * | feat(ui): add keymap setting for toggling package installation log (#1268) | William Boman | 2023-04-28 | 2 | -2/+3 |
| | | | | Closes #1030. | ||||
| * | chore(main): release 1.0.1 (#1264)v1.0.1 | williambotman[bot] | 2023-04-26 | 1 | -2/+2 |
| | | |||||
| * | fix(pypi): also provide install_extra_args to pypi.install (#1263) | William Boman | 2023-04-26 | 1 | -0/+1 |
| | | | | Closes #1224. | ||||
| * | chore: release v1.0.0 (#1262)v1.0.0 | William Boman | 2023-04-26 | 2 | -1/+34 |
| | | |||||
| * | fix(context): don't write exec wrapper file if it already exists (#1261) | William Boman | 2023-04-26 | 1 | -0/+3 |
| | | |||||
| * | feat(linker): add ruby exec wrapper delegate (#1260) | William Boman | 2023-04-26 | 3 | -3/+26 |
| | | |||||
| * | refactor(linker): copy_file instead of rename on Windows (#1254) | William Boman | 2023-04-23 | 2 | -4/+12 |
| | | | | | | | | | Renaming the file will move it from its original installation directory. While reaching into package installation directories is unsupported and not recommended, it seems to be done pretty broadly. In order to avoid unnecessarily breaking people's configs we copy the file instead, for now. (tip: use the stable locations inside $MASON/share $MASON/opt $MASON/bin, if a package is missing a link please open an issue/PR). This will be reversed back to use uv_fs_rename() in 1.x.x. | ||||
| * | fix(linker): don't symlink on Windows (#1253) | William Boman | 2023-04-23 | 1 | -15/+25 |
| | | | | | | | | | | | | | | | | | | 1) FAT (FAT32, exFAT, etc.) file systems doesn't support symlinks. 2) You need administrator access in order to create symlinks. This was working for me locally because I'm running a NTFS fs with "Developer Mode" enabled in Windows 10, which bypasses administrator requirement for mklink. Instead we uv_fs_rename() links. This should effectively be the same, but will require special handling down the road if/when for example multiple package versions can be installed at the same time. When unlinking a package the renamed files should me moved back into the package installation directory, instead of simply being unlinked (i.e. removed). Closes #1251. | ||||
| * | fix(expr): fix strip_{prefix,suffix} (#1249) | William Boman | 2023-04-22 | 1 | -2/+2 |
| | | |||||
| * | refactor(schemas): don't vendor schemas in mason.nvim (#1248) | William Boman | 2023-04-22 | 49 | -140/+96 |
| | | | | | | Instead, schemas are now defined in the package registry and downloaded during installation. See https://github.com/mason-org/mason-registry/pull/1319. | ||||
| * | feat(registry): add .get_all_package_specs() (#1247) | William Boman | 2023-04-22 | 3 | -19/+49 |
| | | | | | This is a faster method than .get_all_packages() due to the fact that it only loads package specifications without instantiating mason-core.package instances. Useful for situations where one only needs to read spec data. | ||||
| * | chore: remove generate scripts and artifacts (#1246) | William Boman | 2023-04-22 | 1 | -154/+0 |
| | | |||||
| * | chore: autogenerate (#1245) | williambotman[bot] | 2023-04-22 | 1 | -1/+1 |
| | | |||||
| * | chore: remove lua:mason-registry.index registry entry (#1243) | William Boman | 2023-04-21 | 2 | -4/+1 |
| | | |||||
| * | chore: autogenerate (#1242) | williambotman[bot] | 2023-04-21 | 2 | -13/+13 |
| | | |||||
| * | chore: autogenerate (#1239) | williambotman[bot] | 2023-04-20 | 3 | -3/+3 |
| | | |||||
| * | chore: autogenerate (#1236) | williambotman[bot] | 2023-04-19 | 1 | -1/+1 |
| | | |||||
| * | chore: migrate verible (#1235) | William Boman | 2023-04-18 | 3 | -105/+2 |
| | | |||||
| * | fix(health): add scheduler in python3_host_prog check (#1234) | Au | 2023-04-18 | 1 | -0/+1 |
| | | |||||
| * | fix(health): only check pwsh on Windows (#1232) | William Boman | 2023-04-18 | 1 | -10/+9 |
| | | |||||
| * | chore: migrate haskell-language-server (#1230) | William Boman | 2023-04-18 | 4 | -60/+4 |
| | | |||||
| * | feat(installer): add generic build provider (#1228) | William Boman | 2023-04-18 | 9 | -44/+163 |
| | | |||||
| * | refactor(expr): remove redundant core filters and always stringify reduced ↵ | William Boman | 2023-04-18 | 3 | -10/+27 |
| | | | | | | value (#1227) The removed filters are not used by mason-registry and are too Lua-specific in nature. | ||||
| * | feat: add require("mason").has_setup flag (#1226) | William Boman | 2023-04-18 | 1 | -0/+3 |
| | | |||||
| * | chore: autogenerate (#1225) | williambotman[bot] | 2023-04-17 | 1 | -1/+1 |
| | | |||||
| * | refactor: refactor github provider to smaller modules (#1223) | William Boman | 2023-04-16 | 4 | -209/+221 |
| | | |||||
| * | chore: migrate r-languageserver (#1222) | William Boman | 2023-04-16 | 2 | -88/+0 |
| | | |||||
| * | refactor(health): split up checks (#1221) | William Boman | 2023-04-16 | 2 | -255/+205 |
| | | |||||
| * | fix(checkhealth): use non-deprecated versions if possible (#1219) | dundargoc | 2023-04-16 | 1 | -16/+29 |
| | | |||||
| * | feat(github): add $MASON_VERSION to build context (#1218) | William Boman | 2023-04-16 | 2 | -7/+15 |
| | | |||||
| * | chore: migrate julia-lsp (#1217) | William Boman | 2023-04-15 | 2 | -87/+0 |
| | | |||||
| * | chore: autogenerate (#1216) | williambotman[bot] | 2023-04-15 | 3 | -2/+3 |
| | | |||||
| * | fix(std): manually call zstd on Windows (#1212) | William Boman | 2023-04-14 | 1 | -1/+20 |
| | | | | Closes #1207. | ||||
