Robert
ab4717c540
Merge pull request #3060 from github/robertbrignull/noUnusedParameters
...
Enable noUnusedParameters for the view code
2023-11-13 11:24:11 +00:00
Shati Patel
934ed82786
Don't create QL pack if user escapes out of prompt ( #3062 )
2023-11-13 10:44:21 +00:00
Koen Vlaswinkel
bc2847a12e
Merge pull request #3057 from github/koesie10/contextual-no-submodule
...
Make contextual queries work for fresh installs
2023-11-13 09:41:06 +01:00
Charis Kyriakou
28994b7bd8
Merge pull request #3059 from github/charisk/accepted-models
...
Differentiate between suggestions and accepted models
2023-11-10 10:25:28 +00:00
Charis Kyriakou
6de96b46ec
Take into account that not all modeled methods have provenance
2023-11-10 09:35:37 +00:00
Charis Kyriakou
692dd02652
Add logic to change style for non-accepted suggestions
2023-11-10 09:35:05 +00:00
Charis Kyriakou
271808a635
Pass modeling status down to drop-down components
2023-11-10 09:34:38 +00:00
Koen Vlaswinkel
64a073368f
Merge pull request #3048 from github/koesie10/type-model
...
Add `type` as modeled method type
2023-11-10 10:21:29 +01:00
Koen Vlaswinkel
ddaabfa0cc
Merge remote-tracking branch 'origin/main' into koesie10/type-model
2023-11-10 09:47:57 +01:00
Charis Kyriakou
f9e06540e4
Merge pull request #3063 from github/robertbrignull/releasing
...
Add instructions for releasing from a branch other than main
2023-11-10 08:24:22 +00:00
Shati Patel
b5b1106e85
Minor tidy-up for local-databases tests ( #3058 )
2023-11-10 08:23:58 +00:00
Robert
3d124f71d3
Remove trailing spaces
2023-11-09 09:39:12 +00:00
Robert
784cff4746
Add note to make sure main is up to date
2023-11-08 18:03:54 +00:00
Robert
5fa5ca3799
Add blank lines around fenced code blocks
2023-11-08 18:02:28 +00:00
Robert
4aee6633b8
Add note about conflicts in the changelog
2023-11-08 17:01:41 +00:00
Robert
d02b1e4dcb
Remove branching instructions for regular/minimal releases
2023-11-08 16:40:36 +00:00
Robert
e90b136e22
Include git command for creating release branch off of previous release tag
2023-11-08 16:39:41 +00:00
Robert
c9f9f62bc7
Add instructions for releasing from a branch other than main
2023-11-08 12:38:26 +00:00
Robert
6af9e7bf4a
Enabled noUnusedParameters in src/view/tsconfig.json
2023-11-07 16:18:15 +00:00
Robert
9c51d1b54f
Remove title prop from ClickableLocation
2023-11-07 16:17:54 +00:00
Robert
814ba246f8
Remove unused parameter from listerer
2023-11-07 16:17:23 +00:00
Robert
427940d3d6
Remove unused index from map call
2023-11-07 16:17:08 +00:00
Robert
9cabb1f460
Remove packageName prop from ModeledMethodDataGrid
2023-11-07 16:15:52 +00:00
Robert
350e5aebd6
Remove label prop from DeterminateProgressRing
2023-11-07 16:14:53 +00:00
Shati Patel
429f9a17d4
Sort databases by name if their languages are the same ( #3055 )
2023-11-06 16:03:33 +00:00
Anders Starcke Henriksen
1c19d7a2e1
Merge pull request #3056 from github/version/bump-to-v1.9.5
...
Bump version to v1.9.5
2023-11-06 16:15:29 +01:00
Koen Vlaswinkel
8464892ac0
Make contextual queries work for fresh installs
...
This fixes the contextual queries when you are not in a workspace with
the submodule and do not have any downloaded packs in the package cache.
In that case, the contextual queries would fail because they weren't
able to determine which pack belonged to the database.
This fixes it by downloading the `codeql/${language}-all` pack in case
no dbscheme is found for the database. After the download is complete,
it will return the expected value for the qlpacks. This should work in
almost all cases (at least for standard languages).
2023-11-06 15:58:07 +01:00
github-actions[bot]
a392a179f9
Bump version to v1.9.5
2023-11-06 14:32:49 +00:00
Anders Starcke Henriksen
69ff2ed30c
Merge pull request #3054 from github/v1.9.4
...
Release / Release (push) Has been cancelled
Release / Publish to VS Code Marketplace (push) Has been cancelled
Release / Publish to Open VSX Registry (push) Has been cancelled
v1.9.4
v1.9.4
2023-11-06 15:04:41 +01:00
Anders Starcke Henriksen
0884eb83ec
v1.9.4
2023-11-06 14:41:42 +01:00
Kasper Svendsen
1fa7a93ec7
Merge pull request #3051 from github/kaspersv/parse-quoted-ra-idents
...
Extend join order badness RA parser
2023-11-06 13:50:46 +01:00
Koen Vlaswinkel
18d7fae817
Merge pull request #3053 from github/koesie10/ruby-arguments
...
Add support for Ruby keyword arguments
2023-11-06 10:59:27 +01:00
Koen Vlaswinkel
b3c5afbe4e
Merge pull request #3052 from github/koesie10/argument-self
...
Extract creation of method argument options to languages
2023-11-06 10:59:20 +01:00
Koen Vlaswinkel
557110d71d
Use readonly dropdowns for showing type models
2023-11-03 15:57:09 +01:00
Koen Vlaswinkel
5f2a32ac8e
Add support for Ruby keyword arguments
...
Ruby keyword arguments are represented differently than positional
arguments in the MaD format: they are represented as `Method[key:]`. The
framework endpoints query also returns the name as `key:`, so we can
detect these and format them as such.
2023-11-03 14:08:04 +01:00
Koen Vlaswinkel
b348356876
Extract creation of method argument options to languages
...
This moves the creation of possible method argument options from the
view to the languages. This allows differentiating between the
languages, for example by using `Argument[self]` for Ruby instead of
`Argument[this]`.
2023-11-03 13:50:13 +01:00
Koen Vlaswinkel
146732fa29
Merge pull request #3049 from github/koesie10/styled-transient-props
...
Use transient props for all styled components
2023-11-03 13:14:10 +01:00
Charis Kyriakou
3cc4f5c4a4
Remove logic that sets neutral models during automodeling ( #3050 )
2023-11-03 10:38:50 +00:00
Koen Vlaswinkel
261f8b3b2c
Add type as modeled method type
...
This adds support for modeling types. A MaD language can now optionally
define a `type` predicate. This allows internally propagating these
models. The UI will now simply show a label "type" for type models
without any way to edit these.
2023-11-03 11:32:49 +01:00
Koen Vlaswinkel
4673bf56bd
Merge pull request #3043 from github/koesie10/generate-model-unify
...
Unify model generation query execution
2023-11-03 11:27:36 +01:00
Koen Vlaswinkel
2f9f2f3d39
Merge remote-tracking branch 'origin/main' into koesie10/generate-model-unify
2023-11-03 11:08:01 +01:00
Koen Vlaswinkel
acc9ab30ed
Add back 0
2023-11-03 10:48:11 +01:00
Kasper Svendsen
053708ab3b
Extend join order badness RA parser
2023-11-03 10:10:39 +01:00
Koen Vlaswinkel
45f0669b85
Use transient prop for MethodModeling component
2023-11-02 14:16:34 +01:00
Koen Vlaswinkel
65f02f1c6f
Use transient prop for CodeSnippetMessage component
2023-11-02 14:09:35 +01:00
Koen Vlaswinkel
fb45a0d409
Use transient prop for VerticalSpace component
2023-11-02 14:09:01 +01:00
Koen Vlaswinkel
3cd06021d3
Use transient prop for TextButton component
2023-11-02 14:08:29 +01:00
Koen Vlaswinkel
cd0b2fba8a
Use transient prop for HorizontalSpace component
2023-11-02 14:07:55 +01:00
Koen Vlaswinkel
1cc63382c9
Remove unnecessary props type for Dropdown
...
This removes the `disabled` prop from the `Dropdown` component. This is
already included in the default HTML props of the `select` component,
so it's not necessary to add it again.
2023-11-02 14:06:03 +01:00
Koen Vlaswinkel
8e8399988e
Use transient props for Alert component
2023-11-02 14:05:11 +01:00