diff --git a/doc/dependency_decisions.yml b/doc/dependency_decisions.yml index 4e2c1355931..913c295850f 100644 --- a/doc/dependency_decisions.yml +++ b/doc/dependency_decisions.yml @@ -94,6 +94,9 @@ - - :permit - WTFPL - *2 +- - :permit + - Public domain + - *2 - - :permit - Apache* - *2 @@ -360,3 +363,10 @@ :why: :versions: [] :when: 2022-02-18 21:09:06.289293214 Z +- - :license + - github.com/layeh/gopher-json + - Public domain + - :who: + :why: + :versions: [] + :when: 2022-04-18 21:25:36.854878000 Z diff --git a/go.mod b/go.mod index d6cdb1368f2..3cdcc8c6b84 100644 --- a/go.mod +++ b/go.mod @@ -96,6 +96,7 @@ require ( github.com/keegancsmith/tmpfriend v0.0.0-20180423180255-86e88902a513 github.com/kr/text v0.2.0 github.com/kylelemons/godebug v1.1.0 + github.com/layeh/gopher-json v0.0.0-20201124131017-552bb3c4c3bf github.com/lib/pq v1.10.4 github.com/machinebox/graphql v0.2.2 github.com/mattn/go-sqlite3 v1.14.12 diff --git a/go.sum b/go.sum index 4b3916b2ef2..8e32035093d 100644 --- a/go.sum +++ b/go.sum @@ -1659,6 +1659,8 @@ github.com/labstack/echo/v4 v4.2.0/go.mod h1:AA49e0DZ8kk5jTOOCKNuPR6oTnBS0dYiM4F github.com/labstack/echo/v4 v4.5.0/go.mod h1:czIriw4a0C1dFun+ObrXp7ok03xON0N1awStJ6ArI7Y= github.com/labstack/gommon v0.3.0/go.mod h1:MULnywXg0yavhxWKc+lOruYdAhDwPK9wf0OL7NoOu+k= github.com/labstack/gommon v0.3.1/go.mod h1:uW6kP17uPlLJsD3ijUYn3/M5bAxtlZhMI6m3MFxTMTM= +github.com/layeh/gopher-json v0.0.0-20201124131017-552bb3c4c3bf h1:bg6J/5S/AeTz7K9i/luJRj31BJ8f+LgYwKQBSOZxSEM= +github.com/layeh/gopher-json v0.0.0-20201124131017-552bb3c4c3bf/go.mod h1:E/q28EyUVBgBQnONAVPIdwvEsv4Ve0vaCA9JWim4+3I= github.com/leodido/go-urn v1.1.0/go.mod h1:+cyI34gQWZcE1eQU7NVgKkkzdXDQHr1dBMtdAPozLkw= github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII= github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= diff --git a/internal/luasandbox/libs.go b/internal/luasandbox/libs.go new file mode 100644 index 00000000000..4de0298ba01 --- /dev/null +++ b/internal/luasandbox/libs.go @@ -0,0 +1,26 @@ +package luasandbox + +import ( + lua "github.com/yuin/gopher-lua" + + "github.com/sourcegraph/sourcegraph/internal/luasandbox/libs" + "github.com/sourcegraph/sourcegraph/internal/luasandbox/util" +) + +type LuaLib interface { + LuaAPI() map[string]lua.LGFunction +} + +var defaultAPIs = map[string]LuaLib{ + "json": libs.JSON, + "path": libs.Path, +} + +var DefaultModules = func() map[string]lua.LGFunction { + modules := map[string]lua.LGFunction{} + for name, api := range defaultAPIs { + modules[name] = util.CreateModule(api.LuaAPI()) + } + + return modules +}() diff --git a/internal/luasandbox/libs/json.go b/internal/luasandbox/libs/json.go new file mode 100644 index 00000000000..4e5122f87b8 --- /dev/null +++ b/internal/luasandbox/libs/json.go @@ -0,0 +1,37 @@ +package libs + +import ( + json "github.com/layeh/gopher-json" + lua "github.com/yuin/gopher-lua" + luar "layeh.com/gopher-luar" + + "github.com/sourcegraph/sourcegraph/internal/luasandbox/util" +) + +var JSON = jsonAPI{} + +type jsonAPI struct{} + +func (api jsonAPI) LuaAPI() map[string]lua.LGFunction { + return map[string]lua.LGFunction{ + "decode": util.WrapSoftFailingLuaFunction(func(state *lua.LState) error { + value, err := json.Decode(state, []byte(state.CheckString(1))) + if err != nil { + return err + } + + state.Push(value) + return nil + }), + + "encode": util.WrapSoftFailingLuaFunction(func(state *lua.LState) error { + data, err := json.Encode(state.CheckAny(1)) + if err != nil { + return err + } + + state.Push(luar.New(state, string(data))) + return nil + }), + } +} diff --git a/internal/luasandbox/libs/paths.go b/internal/luasandbox/libs/paths.go new file mode 100644 index 00000000000..383cd658df1 --- /dev/null +++ b/internal/luasandbox/libs/paths.go @@ -0,0 +1,56 @@ +package libs + +import ( + "path/filepath" + + lua "github.com/yuin/gopher-lua" + luar "layeh.com/gopher-luar" + + "github.com/sourcegraph/sourcegraph/internal/luasandbox/util" +) + +var Path = pathAPI{} + +type pathAPI struct{} + +func (api pathAPI) LuaAPI() map[string]lua.LGFunction { + return map[string]lua.LGFunction{ + "basename": util.WrapLuaFunction(func(state *lua.LState) error { + state.Push(luar.New(state, filepath.Base(state.CheckString(1)))) + return nil + }), + + "dirname": util.WrapLuaFunction(func(state *lua.LState) error { + state.Push(luar.New(state, dirWithoutDot(state.CheckString(1)))) + return nil + }), + + "ancestors": util.WrapLuaFunction(func(state *lua.LState) error { + state.Push(luar.New(state, ancestorDirs(state.CheckString(1)))) + return nil + }), + } +} + +// dirWithoutDot returns the directory name of the given path. Unlike filepath.Dir, +// this function will return an empty string (instead of a `.`) to indicate an empty +// directory name. +func dirWithoutDot(path string) string { + if dir := filepath.Dir(path); dir != "." { + return dir + } + return "" +} + +// ancestorDirs returns all ancestor dirnames of the given path. The last element of +// the returned slice will always be empty (indicating the repository root). +func ancestorDirs(path string) (ancestors []string) { + dir := dirWithoutDot(path) + for dir != "" { + ancestors = append(ancestors, dir) + dir = dirWithoutDot(dir) + } + + ancestors = append(ancestors, "") + return ancestors +} diff --git a/internal/luasandbox/libs/paths_test.go b/internal/luasandbox/libs/paths_test.go new file mode 100644 index 00000000000..85189fd19d1 --- /dev/null +++ b/internal/luasandbox/libs/paths_test.go @@ -0,0 +1,37 @@ +package libs + +import ( + "testing" + + "github.com/google/go-cmp/cmp" +) + +func TestDirWithoutDot(t *testing.T) { + testCases := []struct { + actual string + expected string + }{ + {dirWithoutDot("foo.txt"), ""}, + {dirWithoutDot("foo/bar.txt"), "foo"}, + {dirWithoutDot("foo/baz"), "foo"}, + } + + for _, testCase := range testCases { + if testCase.actual != testCase.expected { + t.Errorf("unexpected dirname: want=%s got=%s", testCase.expected, testCase.actual) + } + } +} + +func TestAncestorDirs(t *testing.T) { + expectedAncestors := []string{ + "foo/bar/baz", + "foo/bar", + "foo", + "", + } + if diff := cmp.Diff(expectedAncestors, ancestorDirs("foo/bar/baz/bonk.txt")); diff != "" { + t.Errorf("unexpected ancestor dirs (-want +got):\n%s", diff) + + } +} diff --git a/internal/luasandbox/sandbox_test.go b/internal/luasandbox/sandbox_test.go index f796ed520ff..65500351997 100644 --- a/internal/luasandbox/sandbox_test.go +++ b/internal/luasandbox/sandbox_test.go @@ -9,6 +9,7 @@ import ( "github.com/google/go-cmp/cmp" lua "github.com/yuin/gopher-lua" + "github.com/sourcegraph/sourcegraph/internal/luasandbox/util" "github.com/sourcegraph/sourcegraph/internal/observation" ) @@ -89,11 +90,11 @@ func TestModule(t *testing.T) { var stashedValue lua.LValue api := map[string]lua.LGFunction{ - "add": WrapLuaFunction(func(state *lua.LState) error { + "add": util.WrapLuaFunction(func(state *lua.LState) error { state.Push(state.CheckNumber(1) + state.CheckNumber(2)) return nil }), - "stash": WrapLuaFunction(func(state *lua.LState) error { + "stash": util.WrapLuaFunction(func(state *lua.LState) error { stashedValue = state.CheckAny(1) return nil }), @@ -103,7 +104,7 @@ func TestModule(t *testing.T) { sandbox, err := newService(&observation.TestContext).CreateSandbox(ctx, CreateOptions{ Modules: map[string]lua.LGFunction{ - "testmod": CreateModule(api), + "testmod": util.CreateModule(api), }, }) if err != nil { diff --git a/internal/luasandbox/util.go b/internal/luasandbox/util/util.go similarity index 87% rename from internal/luasandbox/util.go rename to internal/luasandbox/util/util.go index e156b6cd49d..9385a130e5e 100644 --- a/internal/luasandbox/util.go +++ b/internal/luasandbox/util/util.go @@ -1,7 +1,8 @@ -package luasandbox +package util import ( lua "github.com/yuin/gopher-lua" + luar "layeh.com/gopher-luar" "github.com/sourcegraph/sourcegraph/lib/errors" ) @@ -17,14 +18,29 @@ func CreateModule(api map[string]lua.LGFunction) lua.LGFunction { }) } -// WrapLuaFunction invokes the given callback and returns 2 (raising an error) if the -// returned error is non-nil, and returns 1 (success) otherwise. This wrapper function -// makes no assumptions about how the called function modifies the Lua virtual machine -// state. +// WrapLuaFunction invokes the given callback and returns 1 on success. This assumes +// the underlying function pushed a single return value onto the stack. An error is +// raised on failure (and the stack is assumed to be untouched). func WrapLuaFunction(f func(state *lua.LState) error) func(state *lua.LState) int { return func(state *lua.LState) int { if err := f(state); err != nil { state.RaiseError(err.Error()) + return 0 + } + + return 1 + } +} + +// WrapSoftFailingLuaFunction invokes the given callback and returns 1 on success. This +// assumes the underlying function pushed a single return value onto the stack. A nil value +// and the error message is pushed to the stack on failure and 2 is returned. This allows +// the `value, err = call()` idiom. +func WrapSoftFailingLuaFunction(f func(state *lua.LState) error) func(state *lua.LState) int { + return func(state *lua.LState) int { + if err := f(state); err != nil { + state.Push(lua.LNil) + state.Push(luar.New(state, err.Error())) return 2 } diff --git a/third-party-licenses/ThirdPartyLicenses.csv b/third-party-licenses/ThirdPartyLicenses.csv index 0db481e5ffa..4226a454d1f 100644 --- a/third-party-licenses/ThirdPartyLicenses.csv +++ b/third-party-licenses/ThirdPartyLicenses.csv @@ -9,10 +9,21 @@ Yarn,@babel/plugin-syntax-jsx,7.16.7,MIT,https://babel.dev/docs/en/next/babel-pl Yarn,@babel/runtime,7.17.2,MIT,https://babel.dev/docs/en/next/babel-runtime,Approved Yarn,@babel/types,7.17.0,MIT,https://babel.dev/docs/en/next/babel-types,Approved Yarn,@codemirror/autocomplete,0.19.14,MIT,http://marijnhaverbeke.nl,Approved +Yarn,@codemirror/commands,0.19.8,MIT,http://marijnhaverbeke.nl,Approved +Yarn,@codemirror/gutter,0.19.9,MIT,http://marijnhaverbeke.nl,Approved Yarn,@codemirror/highlight,0.19.7,MIT,http://marijnhaverbeke.nl,Approved +Yarn,@codemirror/history,0.19.2,MIT,http://marijnhaverbeke.nl,Approved +Yarn,@codemirror/lang-css,0.19.3,MIT,http://marijnhaverbeke.nl,Approved +Yarn,@codemirror/lang-html,0.19.4,MIT,http://marijnhaverbeke.nl,Approved +Yarn,@codemirror/lang-javascript,0.19.7,MIT,http://marijnhaverbeke.nl,Approved +Yarn,@codemirror/lang-markdown,0.19.6,MIT,http://marijnhaverbeke.nl,Approved Yarn,@codemirror/language,0.19.8,MIT,http://marijnhaverbeke.nl,Approved -Yarn,@codemirror/rangeset,0.19.8,MIT,http://marijnhaverbeke.nl,Approved +Yarn,@codemirror/lint,0.19.6,MIT,http://marijnhaverbeke.nl,Approved +Yarn,@codemirror/matchbrackets,0.19.4,MIT,http://marijnhaverbeke.nl,Approved +Yarn,@codemirror/panel,0.19.1,MIT,http://marijnhaverbeke.nl,Approved +Yarn,@codemirror/rangeset,0.19.9,MIT,http://marijnhaverbeke.nl,Approved Yarn,@codemirror/state,0.19.9,MIT,http://marijnhaverbeke.nl,Approved +Yarn,@codemirror/stream-parser,0.19.8,MIT,http://marijnhaverbeke.nl,Approved Yarn,@codemirror/text,0.19.6,MIT,http://marijnhaverbeke.nl,Approved Yarn,@codemirror/tooltip,0.19.16,MIT,http://marijnhaverbeke.nl,Approved Yarn,@codemirror/view,0.19.47,MIT,http://marijnhaverbeke.nl,Approved @@ -26,9 +37,37 @@ Yarn,@emotion/sheet,1.1.0,MIT,Unknown,Approved Yarn,@emotion/unitless,0.7.5,MIT,Unknown,Approved Yarn,@emotion/utils,1.1.0,MIT,Unknown,Approved Yarn,@emotion/weak-memoize,0.2.5,MIT,Unknown,Approved +Yarn,@endemolshinegroup/cosmiconfig-typescript-loader,3.0.2,MIT,https://github.com/EndemolShineGroup/cosmiconfig-typescript-loader,Approved +Yarn,@graphiql/toolkit,0.4.2,MIT,http://github.com/graphql/graphiql/tree/master/packages/graphiql-toolkit#readme,Approved +Yarn,@graphql-tools/batch-execute,8.4.1,MIT,Unknown,Approved +Yarn,@graphql-tools/delegate,8.7.0,MIT,Unknown,Approved +Yarn,@graphql-tools/graphql-file-loader,7.3.7,MIT,Unknown,Approved +Yarn,@graphql-tools/import,6.6.9,MIT,Unknown,Approved +Yarn,@graphql-tools/json-file-loader,7.3.7,MIT,Unknown,Approved +Yarn,@graphql-tools/load,7.5.5,MIT,Unknown,Approved +Yarn,@graphql-tools/merge,8.2.6,MIT,Unknown,Approved +Yarn,@graphql-tools/schema,8.3.5,MIT,Unknown,Approved +Yarn,@graphql-tools/url-loader,7.9.7,MIT,Unknown,Approved +Yarn,@graphql-tools/utils,8.6.5,MIT,Unknown,Approved +Yarn,@graphql-tools/wrap,8.4.9,MIT,Unknown,Approved Yarn,@graphql-typed-document-node/core,3.1.0,MIT,Unknown,Approved +Yarn,@iarna/toml,2.2.5,ISC,https://github.com/iarna/iarna-toml#readme,Approved +Yarn,@juggle/resize-observer,3.3.1,Apache 2.0,https://juggle.studio/resize-observer/,Approved Yarn,@lezer/common,0.15.11,MIT,Unknown,Approved +Yarn,@lezer/css,0.15.2,MIT,Unknown,Approved +Yarn,@lezer/html,0.15.1,MIT,Unknown,Approved +Yarn,@lezer/javascript,0.15.3,MIT,Unknown,Approved Yarn,@lezer/lr,0.15.8,MIT,Unknown,Approved +Yarn,@lezer/markdown,0.15.6,MIT,Unknown,Approved +Yarn,@microsoft/fast-element,1.7.0,MIT,https://discord.gg/FcSNfg4,Approved +Yarn,@microsoft/fast-foundation,2.32.2,MIT,https://discord.gg/FcSNfg4,Approved +Yarn,@microsoft/fast-react-wrapper,0.1.25,MIT,https://discord.gg/FcSNfg4,Approved +Yarn,@microsoft/fast-web-utilities,5.1.0,MIT,https://discord.gg/FcSNfg4,Approved +Yarn,@n1ru4l/graphql-live-query,0.9.0,MIT,https://github.com/n1ru4l/graphql-live-queries#readme,Approved +Yarn,@n1ru4l/push-pull-async-iterable-iterator,3.2.0,MIT,https://github.com/n1ru4l,Approved +Yarn,@nodelib/fs.scandir,2.1.3,MIT,Unknown,Approved +Yarn,@nodelib/fs.stat,2.0.3,MIT,Unknown,Approved +Yarn,@nodelib/fs.walk,1.2.4,MIT,Unknown,Approved Yarn,@popperjs/core,2.10.2,MIT,Unknown,Approved Yarn,@reach/accordion,0.16.1,MIT,Unknown,Approved Yarn,@reach/auto-id,0.16.0,MIT,Unknown,Approved @@ -82,6 +121,7 @@ Yarn,@sourcegraph/shared,1.0.0,Apache 2.0,Unknown,Approved Yarn,@sourcegraph/storybook,0.0.1,Apache 2.0,Unknown,Approved Yarn,@sourcegraph/stylelint-plugin-sourcegraph,1.0.0,Apache 2.0,Unknown,Approved Yarn,@sourcegraph/template-parser,0.0.1,Apache 2.0,Unknown,Approved +Yarn,@sourcegraph/vscode,2.2.1,Apache 2.0,Unknown,Approved Yarn,@sourcegraph/web,1.10.1,Apache 2.0,Unknown,Approved Yarn,@sourcegraph/wildcard,0.0.1,Apache 2.0,Unknown,Approved Yarn,@sqs/jsonc-parser,1.0.3,MIT,Unknown,Approved @@ -99,8 +139,8 @@ Yarn,@types/d3-time,1.1.1,MIT,Unknown,Approved Yarn,@types/d3-time,2.1.1,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/d3-time,Approved Yarn,@types/d3-voronoi,1.1.9,MIT,Unknown,Approved Yarn,@types/eslint,7.2.13,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint,Approved -Yarn,@types/eslint-scope,3.7.0,MIT,Unknown,Approved -Yarn,@types/estree,0.0.50,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree,Approved +Yarn,@types/eslint-scope,3.7.3,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint-scope,Approved +Yarn,@types/estree,0.0.51,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree,Approved Yarn,@types/filesystem,0.0.29,MIT,Unknown,Approved Yarn,@types/filewriter,0.0.28,MIT,Unknown,Approved Yarn,@types/har-format,1.2.4,MIT,Unknown,Approved @@ -111,16 +151,20 @@ Yarn,@types/lodash,4.14.180,MIT,https://github.com/DefinitelyTyped/DefinitelyTyp Yarn,@types/node,14.14.41,MIT,Unknown,Approved Yarn,@types/parse-json,4.0.0,MIT,Unknown,Approved Yarn,@types/prop-types,15.5.6,MIT,Unknown,Approved -Yarn,@types/q,1.5.4,MIT,Unknown,Approved -Yarn,@types/react,17.0.0,MIT,Unknown,Approved -Yarn,@types/react-dom,16.9.8,MIT,Unknown,Approved +Yarn,@types/q,1.5.5,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/q,Approved +Yarn,@types/react,17.0.43,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react,Approved +Yarn,@types/react-dom,17.0.14,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom,Approved Yarn,@types/react-transition-group,4.4.4,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-transition-group,Approved Yarn,@types/responselike,1.0.0,MIT,Unknown,Approved +Yarn,@types/scheduler,0.16.2,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/scheduler,Approved Yarn,@types/svgo,2.6.0,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/svgo,Approved Yarn,@types/vscode,1.63.1,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/vscode,Approved +Yarn,@types/websocket,1.0.5,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/websocket,Approved +Yarn,@types/ws,8.5.3,MIT,https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ws,Approved Yarn,@visx/annotation,1.7.2,MIT,https://github.com/airbnb/visx#readme,Approved Yarn,@visx/annotation,2.9.0,MIT,https://github.com/airbnb/visx#readme,Approved Yarn,@visx/axis,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved +Yarn,@visx/axis,2.6.0,MIT,https://github.com/airbnb/visx#readme,Approved Yarn,@visx/bounds,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved Yarn,@visx/curve,1.7.0,MIT,Unknown,Approved Yarn,@visx/curve,2.1.0,MIT,Unknown,Approved @@ -130,6 +174,7 @@ Yarn,@visx/event,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved Yarn,@visx/event,2.6.0,MIT,https://github.com/airbnb/visx#readme,Approved Yarn,@visx/glyph,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved Yarn,@visx/grid,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved +Yarn,@visx/grid,2.6.0,MIT,https://github.com/airbnb/visx#readme,Approved Yarn,@visx/group,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved Yarn,@visx/group,2.1.0,MIT,https://github.com/airbnb/visx#readme,Approved Yarn,@visx/mock-data,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved @@ -138,6 +183,7 @@ Yarn,@visx/point,1.7.0,MIT,Unknown,Approved Yarn,@visx/point,2.6.0,MIT,Unknown,Approved Yarn,@visx/react-spring,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved Yarn,@visx/responsive,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved +Yarn,@visx/responsive,2.8.0,MIT,https://github.com/airbnb/visx#readme,Approved Yarn,@visx/scale,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved Yarn,@visx/scale,2.2.2,MIT,https://github.com/airbnb/visx#readme,Approved Yarn,@visx/shape,1.7.0,MIT,Unknown,Approved @@ -147,6 +193,8 @@ Yarn,@visx/text,2.3.0,MIT,https://github.com/airbnb/visx#readme,Approved Yarn,@visx/tooltip,1.7.2,MIT,https://github.com/airbnb/visx#readme,Approved Yarn,@visx/voronoi,1.7.0,MIT,https://github.com/airbnb/visx#readme,Approved Yarn,@visx/xychart,1.7.3,MIT,https://github.com/airbnb/visx#readme,Approved +Yarn,@vscode/codicons,0.0.29,CC-BY-4.0,Unknown,Approved +Yarn,@vscode/webview-ui-toolkit,0.9.0,MIT,https://github.com/microsoft/vscode-webview-ui-toolkit#readme,Approved Yarn,@webassemblyjs/ast,1.11.1,MIT,Unknown,Approved Yarn,@webassemblyjs/floating-point-hex-parser,1.11.1,MIT,Unknown,Approved Yarn,@webassemblyjs/helper-api-error,1.11.1,MIT,Unknown,Approved @@ -168,7 +216,9 @@ Yarn,@wry/trie,0.3.0,MIT,https://github.com/benjamn/wryware,Approved Yarn,@xstate/fsm,1.4.0,MIT,https://github.com/davidkpiano/xstate/tree/master/packages/xstate-fsm#readme,Approved Yarn,@xtuc/ieee754,1.2.0,New BSD,http://feross.org,Approved Yarn,@xtuc/long,4.2.2,Apache 2.0,Unknown,Approved +Yarn,abort-controller,3.0.0,MIT,https://github.com/mysticatea/abort-controller#readme,Approved Yarn,acorn,8.6.0,MIT,https://github.com/acornjs/acorn,Approved +Yarn,acorn-import-assertions,1.8.0,MIT,Unknown,Approved Yarn,ajv,6.12.6,MIT,https://github.com/ajv-validator/ajv,Approved Yarn,ajv,8.6.3,MIT,https://ajv.js.org/,Approved Yarn,ajv-formats,2.1.1,MIT,https://github.com/ajv-validator/ajv-formats#readme,Approved @@ -178,17 +228,24 @@ Yarn,ansi-regex,2.1.1,MIT,sindresorhus.com,Approved Yarn,ansi-styles,2.2.1,MIT,sindresorhus.com,Approved Yarn,ansi-styles,3.2.1,MIT,sindresorhus.com,Approved Yarn,apollo3-cache-persist,0.12.1,MIT,https://github.com/apollographql/apollo-cache-persist#readme,Approved +Yarn,arg,4.1.0,MIT,Unknown,Approved Yarn,argparse,1.0.10,MIT,Unknown,Approved Yarn,argparse,2.0.1,Python-2.0,Unknown,Approved +Yarn,array-union,2.1.0,MIT,sindresorhus.com,Approved Yarn,babel-plugin-macros,2.8.0,MIT,https://github.com/kentcdodds/babel-plugin-macros#readme,Approved +Yarn,backo2,1.0.2,MIT,Unknown,Approved Yarn,balanced-match,0.4.2,MIT,https://github.com/juliangruber/balanced-match,Approved Yarn,balanced-match,1.0.0,MIT,https://github.com/juliangruber/balanced-match,Approved +Yarn,base64-js,1.5.1,MIT,https://github.com/beatgammit/base64-js,Approved Yarn,bloomfilter,0.0.18,New BSD,https://github.com/jasondavies/bloomfilter.js,Approved Yarn,boolbase,1.0.0,ISC,https://github.com/fb55/boolbase,Approved Yarn,bootstrap,4.5.2,MIT,https://getbootstrap.com/,Approved Yarn,brace-expansion,1.1.11,MIT,https://github.com/juliangruber/brace-expansion,Approved +Yarn,braces,3.0.2,MIT,https://github.com/micromatch/braces,Approved Yarn,browserslist,4.19.3,MIT,Unknown,Approved +Yarn,buffer,5.7.1,MIT,https://github.com/feross/buffer,Approved Yarn,buffer-from,1.1.1,MIT,Unknown,Approved +Yarn,builtin-status-codes,3.0.0,MIT,bendrucker.me,Approved Yarn,cacheable-lookup,5.0.3,MIT,https://github.com/szmarczak/cacheable-lookup#readme,Approved Yarn,cacheable-request,7.0.1,MIT,http://lukechilds.co.uk,Approved Yarn,call-bind,1.0.2,MIT,https://github.com/ljharb/call-bind#readme,Approved @@ -204,21 +261,21 @@ Yarn,chrome-trace-event,1.0.2,MIT,Unknown,Approved Yarn,classnames,2.3.1,MIT,Unknown,Approved Yarn,clone-response,1.0.2,MIT,https://github.com/lukechilds/clone-response,Approved Go,cloud.google.com/go,v0.100.2,"Apache 2.0,New BSD","",Approved -Go,cloud.google.com/go/compute,v1.1.0,Apache 2.0,"",Approved +Go,cloud.google.com/go/compute,v1.5.0,Apache 2.0,"",Approved Go,cloud.google.com/go/iam,v0.1.1,Apache 2.0,"",Approved Go,cloud.google.com/go/kms,v1.1.0,Apache 2.0,"",Approved Go,cloud.google.com/go/monitoring,v1.2.0,Apache 2.0,"",Approved -Go,cloud.google.com/go/profiler,v0.1.2,Apache 2.0,"",Approved +Go,cloud.google.com/go/profiler,v0.2.0,Apache 2.0,"",Approved Go,cloud.google.com/go/pubsub,v1.17.1,Apache 2.0,"",Approved Go,cloud.google.com/go/storage,v1.19.0,Apache 2.0,"",Approved Yarn,coa,2.0.2,MIT,http://github.com/veged/coa,Approved -Yarn,codemirror,5.58.3,MIT,https://codemirror.net/,Approved -Yarn,codemirror-graphql,0.15.2,MIT,https://github.com/graphql/graphiql/tree/main/packages/codemirror-graphql#readme,Approved -Yarn,color,3.0.0,MIT,Unknown,Approved +Yarn,codemirror,5.65.2,MIT,https://codemirror.net/,Approved +Yarn,codemirror-graphql,1.2.14,MIT,https://github.com/graphql/graphiql/tree/main/packages/codemirror-graphql#readme,Approved +Yarn,color,3.2.1,MIT,Unknown,Approved Yarn,color-convert,1.9.3,MIT,Unknown,Approved Yarn,color-name,1.1.3,MIT,https://github.com/dfcreative/color-name,Approved Yarn,color-name,1.1.4,MIT,https://github.com/colorjs/color-name,Approved -Yarn,color-string,1.5.5,MIT,Unknown,Approved +Yarn,color-string,1.9.0,MIT,Unknown,Approved Yarn,comlink,4.3.0,Apache 2.0,Unknown,Approved Yarn,commander,2.20.3,MIT,Unknown,Approved Yarn,compute-scroll-into-view,1.0.17,MIT,https://scroll-into-view-if-needed.netlify.com/,Approved @@ -229,9 +286,14 @@ Yarn,core-js,2.6.11,MIT,Unknown,Approved Yarn,core-js,3.10.0,MIT,Unknown,Approved Yarn,cosmiconfig,5.2.1,MIT,https://github.com/davidtheclark/cosmiconfig#readme,Approved Yarn,cosmiconfig,6.0.0,MIT,https://github.com/davidtheclark/cosmiconfig#readme,Approved +Yarn,cosmiconfig,7.0.1,MIT,https://github.com/davidtheclark/cosmiconfig#readme,Approved +Yarn,cosmiconfig-toml-loader,1.0.0,MIT,https://github.com/danielrearden/cosmiconfig-toml-loader#readme,Approved Yarn,create-react-class,15.7.0,MIT,https://facebook.github.io/react/,Approved Yarn,create-react-context,0.3.0,MIT,Unknown,Approved -Yarn,cross-fetch,3.1.4,MIT,https://github.com/lquixada/cross-fetch,Approved +Yarn,create-require,1.1.1,MIT,Unknown,Approved +Yarn,crelt,1.0.5,MIT,https://github.com/marijnh/crelt#readme,Approved +Yarn,cross-fetch,3.1.5,MIT,https://github.com/lquixada/cross-fetch,Approved +Yarn,cross-undici-fetch,0.1.27,MIT,Unknown,Approved Yarn,css-color-names,0.0.4,MIT,http://www.daveeddy.com,Approved Yarn,css-declaration-sorter,4.0.1,MIT,https://selwyn.cc/,Approved Yarn,css-select,2.1.0,Simplified BSD,Unknown,Approved @@ -269,6 +331,7 @@ Yarn,d3-time,2.1.1,New BSD,https://d3js.org/d3-time/,Approved Yarn,d3-time-format,2.1.3,New BSD,https://d3js.org/d3-time-format/,Approved Yarn,d3-time-format,3.0.0,New BSD,https://d3js.org/d3-time-format/,Approved Yarn,d3-voronoi,1.1.4,New BSD,https://d3js.org/d3-voronoi/,Approved +Yarn,dataloader,2.0.0,MIT,https://github.com/graphql/dataloader,Approved Yarn,date-fns,2.16.1,MIT,Unknown,Approved Yarn,debounce,1.2.0,MIT,Unknown,Approved Yarn,decimal.js-light,2.5.0,MIT,Unknown,Approved @@ -280,26 +343,29 @@ Yarn,define-properties,1.1.3,MIT,Unknown,Approved Yarn,delay,4.4.1,MIT,https://sindresorhus.com,Approved Yarn,dequal,2.0.2,MIT,https://lukeed.com,Approved Yarn,detect-node-es,1.1.0,MIT,https://github.com/thekashey/detect-node,Approved +Yarn,diff,4.0.2,New BSD,Unknown,Approved +Yarn,dir-glob,3.0.1,MIT,github.com/kevva,Approved Yarn,dom-confetti,0.1.1,MIT,Unknown,Approved Yarn,dom-helpers,3.4.0,MIT,Unknown,Approved Yarn,dom-helpers,5.2.0,MIT,Unknown,Approved Yarn,dom-serializer,0.1.1,MIT,Unknown,Approved -Yarn,dom-serializer,1.3.1,MIT,Unknown,Approved +Yarn,dom-serializer,1.3.2,MIT,Unknown,Approved Yarn,domelementtype,1.3.1,Simplified BSD,Unknown,Approved Yarn,domelementtype,2.2.0,Simplified BSD,Unknown,Approved Yarn,domhandler,4.2.0,Simplified BSD,Unknown,Approved Yarn,domutils,1.7.0,Simplified BSD,Unknown,Approved -Yarn,domutils,2.7.0,Simplified BSD,Unknown,Approved +Yarn,domutils,2.8.0,Simplified BSD,Unknown,Approved Yarn,dot-prop,5.2.0,MIT,sindresorhus.com,Approved Yarn,downshift,3.4.8,MIT,https://github.com/downshift-js/downshift#readme,Approved +Yarn,dset,3.1.1,MIT,https://lukeed.com,Approved Yarn,electron-to-chromium,1.4.71,ISC,Unknown,Approved Yarn,end-of-stream,1.4.4,MIT,https://github.com/mafintosh/end-of-stream,Approved -Yarn,enhanced-resolve,5.8.3,MIT,http://github.com/webpack/enhanced-resolve,Approved +Yarn,enhanced-resolve,5.9.2,MIT,http://github.com/webpack/enhanced-resolve,Approved Yarn,entities,1.1.2,Simplified BSD,Unknown,Approved -Yarn,entities,2.0.0,Simplified BSD,Unknown,Approved +Yarn,entities,2.1.0,Simplified BSD,Unknown,Approved Yarn,error-ex,1.3.2,MIT,Unknown,Approved -Yarn,es-abstract,1.18.3,MIT,http://ljharb.codes,Approved -Yarn,es-module-lexer,0.7.1,MIT,https://github.com/guybedford/es-module-lexer#readme,Approved +Yarn,es-abstract,1.19.1,MIT,http://ljharb.codes,Approved +Yarn,es-module-lexer,0.9.3,MIT,https://github.com/guybedford/es-module-lexer#readme,Approved Yarn,es-to-primitive,1.2.1,MIT,Unknown,Approved Yarn,escalade,3.1.1,MIT,https://lukeed.com,Approved Yarn,escape-html,1.0.3,MIT,Unknown,Approved @@ -310,25 +376,36 @@ Yarn,esprima,4.0.1,Simplified BSD,http://esprima.org/,Approved Yarn,esrecurse,4.3.0,Simplified BSD,https://github.com/estools/esrecurse,Approved Yarn,estraverse,4.3.0,Simplified BSD,https://github.com/estools/estraverse,Approved Yarn,estraverse,5.2.0,Simplified BSD,https://github.com/estools/estraverse,Approved +Yarn,event-target-shim,5.0.1,MIT,https://github.com/mysticatea/event-target-shim,Approved +Yarn,eventemitter3,3.1.2,MIT,Unknown,Approved Yarn,events,3.3.0,MIT,http://jeditoolkit.com,Approved +Yarn,eventsource,1.1.0,MIT,http://github.com/EventSource/eventsource,Approved +Yarn,exenv-es6,1.0.0,MIT,https://github.com/chrisdholt/exenv-es6#readme,Approved +Yarn,extract-files,11.0.0,MIT,https://github.com/jaydenseric/extract-files#readme,Approved Yarn,fast-deep-equal,3.1.3,MIT,https://github.com/epoberezkin/fast-deep-equal#readme,Approved +Yarn,fast-glob,3.2.11,MIT,https://mrmlnc.com,Approved Yarn,fast-json-stable-stringify,2.1.0,MIT,https://github.com/epoberezkin/fast-json-stable-stringify,Approved +Yarn,fastq,1.6.0,ISC,https://github.com/mcollina/fastq#readme,Approved +Yarn,fill-range,7.0.1,MIT,https://github.com/jonschlinkert/fill-range,Approved Yarn,find-root,1.1.0,MIT,Unknown,Approved Yarn,focus-lock,0.10.1,MIT,https://github.com/theKashey/focus-lock#readme,Approved Yarn,focus-visible,5.2.0,W3C,https://github.com/WICG/focus-visible,Approved +Yarn,form-data-encoder,1.7.2,MIT,Unknown,Approved +Yarn,formdata-node,4.3.2,MIT,Unknown,Approved Yarn,function-bind,1.1.1,MIT,https://github.com/Raynos/function-bind,Approved Yarn,fzy.js,0.4.1,MIT,http://github.com/jhawthorn/fzy.js,Approved Yarn,get-intrinsic,1.1.1,MIT,https://github.com/ljharb/get-intrinsic#readme,Approved Yarn,get-nonce,1.0.1,MIT,https://github.com/theKashey/get-nonce,Approved Yarn,get-stream,5.1.0,MIT,sindresorhus.com,Approved -Go,github.com/DataDog/datadog-agent/pkg/obfuscate,v0.0.0-20211129110424-6491aa3bf583,Apache 2.0,"",Approved -Go,github.com/DataDog/datadog-go,v4.8.2,MIT,"",Approved -Go,github.com/DataDog/datadog-go/v5,v5.0.2,MIT,"",Approved +Yarn,get-symbol-description,1.0.0,MIT,https://github.com/inspect-js/get-symbol-description#readme,Approved +Go,github.com/DataDog/datadog-agent/pkg/obfuscate,v0.35.1,Apache 2.0,"",Approved +Go,github.com/DataDog/datadog-go,v4.8.3,MIT,"",Approved +Go,github.com/DataDog/datadog-go/v5,v5.1.0,MIT,"",Approved Go,github.com/DataDog/gostackparse,v0.5.0,"Apache 2.0,New BSD","",Approved -Go,github.com/DataDog/sketches-go,v1.0.0,Apache 2.0,"",Approved +Go,github.com/DataDog/sketches-go,v1.4.1,Apache 2.0,"",Approved Go,github.com/Masterminds/semver,v1.5.0,MIT,"",Approved Go,github.com/NYTimes/gziphandler,v1.1.1,Apache 2.0,"",Approved -Go,github.com/ProtonMail/go-crypto,v0.0.0-20220113124808-70ae35bab23f,New BSD,"",Approved +Go,github.com/ProtonMail/go-crypto,v0.0.0-20220407094043-a94812496cf5,New BSD,"",Approved Go,github.com/PuerkitoBio/purell,v1.1.1,New BSD,"",Approved Go,github.com/PuerkitoBio/rehttp,v1.1.0,New BSD,"",Approved Go,github.com/PuerkitoBio/urlesc,v0.0.0-20170810143723-de5bf2ad4578,New BSD,"",Approved @@ -337,7 +414,6 @@ Go,github.com/agext/levenshtein,v1.2.3,Apache 2.0,"",Approved Go,github.com/alecthomas/chroma,v0.10.0,MIT,"",Approved Go,github.com/andres-erbsen/clock,v0.0.0-20160526145045-9e14626cd129,MIT,"",Approved Go,github.com/asaskevich/govalidator,v0.0.0-20210307081110-f21760c49a8d,MIT,"",Approved -Go,github.com/avelino/slugify,v0.0.0-20180501145920-855f152bd774,MIT,"",Approved Go,github.com/aws/aws-sdk-go,v1.42.45,"Apache 2.0,New BSD","",Approved Go,github.com/aws/aws-sdk-go-v2,v1.13.0,"Apache 2.0,New BSD","",Approved Go,github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream,v1.2.0,Apache 2.0,"",Approved @@ -357,11 +433,11 @@ Go,github.com/aws/aws-sdk-go-v2/service/kms,v1.14.0,Apache 2.0,"",Approved Go,github.com/aws/aws-sdk-go-v2/service/s3,v1.24.1,Apache 2.0,"",Approved Go,github.com/aws/aws-sdk-go-v2/service/sso,v1.9.0,Apache 2.0,"",Approved Go,github.com/aws/aws-sdk-go-v2/service/sts,v1.14.0,Apache 2.0,"",Approved -Go,github.com/aws/smithy-go,v1.10.0,Apache 2.0,"",Approved +Go,github.com/aws/smithy-go,v1.11.0,Apache 2.0,"",Approved Go,github.com/aymerick/douceur,v0.2.0,MIT,"",Approved Go,github.com/beevik/etree,v1.1.0,New BSD,"",Approved Go,github.com/beorn7/perks,v1.0.1,MIT,"",Approved -Go,github.com/bits-and-blooms/bitset,v1.2.1,New BSD,"",Approved +Go,github.com/bits-and-blooms/bitset,v1.2.2,New BSD,"",Approved Go,github.com/boj/redistore,v0.0.0-20180917114910-cd5dcc76aeff,MIT,"",Approved Go,github.com/buildkite/go-buildkite/v3,v3.0.1,Simplified BSD,"",Approved Go,github.com/cenkalti/backoff,v2.2.1,MIT,"",Approved @@ -374,6 +450,7 @@ Go,github.com/cockroachdb/redact,v1.1.3,Apache 2.0,"",Approved Go,github.com/containerd/typeurl,v1.0.2,Apache 2.0,"",Approved Go,github.com/coreos/go-oidc,v2.2.1,Apache 2.0,"",Approved Go,github.com/coreos/go-semver,v0.3.0,Apache 2.0,"",Approved +Go,github.com/cpuguy83/go-md2man/v2,v2.0.1,MIT,"",Approved Go,github.com/davecgh/go-spew,v1.1.1,ISC,"",Approved Go,github.com/daviddengcn/go-colortext,v1.0.0,MIT,"",Approved Go,github.com/derision-test/glock,v1.0.0,MIT,"",Approved @@ -387,19 +464,18 @@ Go,github.com/docker/docker-credential-helpers,v0.6.4,MIT,"",Approved Go,github.com/docker/go-connections,v0.4.0,Apache 2.0,"",Approved Go,github.com/docker/go-units,v0.4.0,Apache 2.0,"",Approved Go,github.com/dustin/go-humanize,v1.0.0,MIT,"",Approved -Go,github.com/emirpasic/gods,v1.12.0,Simplified BSD,"",Approved +Go,github.com/emirpasic/gods,v1.16.0,Simplified BSD,"",Approved Go,github.com/facebookgo/clock,v0.0.0-20150410010913-600d898af40a,MIT,"",Approved Go,github.com/facebookgo/limitgroup,v0.0.0-20150612190941-6abd8d71ec01,BSD,"",Approved Go,github.com/facebookgo/muster,v0.0.0-20150708232844-fd3d7953fd52,BSD,"",Approved Go,github.com/fatih/color,v1.13.0,MIT,"",Approved -Go,github.com/fatih/structs,v1.1.0,MIT,"",Approved Go,github.com/felixge/fgprof,v0.9.2,MIT,"",Approved Go,github.com/felixge/httpsnoop,v1.0.2,MIT,"",Approved Go,github.com/fsnotify/fsnotify,v1.5.1,New BSD,"",Approved Go,github.com/gen2brain/beeep,v0.0.0-20210529141713-5586760f0cc1,Simplified BSD,"",Approved Go,github.com/getsentry/raven-go,v0.2.0,New BSD,"",Approved Go,github.com/getsentry/sentry-go,v0.12.0,Simplified BSD,"",Approved -Go,github.com/go-enry/go-enry/v2,v2.8.0,Apache 2.0,"",Approved +Go,github.com/go-enry/go-enry/v2,v2.8.2,Apache 2.0,"",Approved Go,github.com/go-errors/errors,v1.4.2,MIT,"",Approved Go,github.com/go-git/gcfg,v1.5.0,New BSD,"",Approved Go,github.com/go-git/go-billy/v5,v5.3.1,Apache 2.0,"",Approved @@ -420,7 +496,6 @@ Go,github.com/go-openapi/validate,v0.20.3,Apache 2.0,"",Approved Go,github.com/go-redsync/redsync,v1.4.2,New BSD,"",Approved Go,github.com/go-stack/stack,v1.8.1,MIT,"",Approved Go,github.com/gobwas/glob,v0.2.3,MIT,"",Approved -Go,github.com/godbus/dbus/v5,v5.0.6,Simplified BSD,"",Approved Go,github.com/gogo/protobuf,v1.3.2,New BSD,"",Approved Go,github.com/golang-jwt/jwt/v4,v4.2.0,MIT,"",Approved Go,github.com/golang/gddo,v0.0.0-20210115222349-20d68f94ee1f,New BSD,"",Approved @@ -431,14 +506,14 @@ Go,github.com/gomodule/oauth1,v0.2.0,Apache 2.0,"",Approved Go,github.com/gomodule/redigo,v2.0.0,Apache 2.0,"",Approved Go,github.com/google/go-cmp,v0.5.7,New BSD,"",Approved Go,github.com/google/go-github,v17.0.0,New BSD,"",Approved -Go,github.com/google/go-github/v28,v28.1.1,New BSD,"",Approved Go,github.com/google/go-github/v31,v31.0.0,New BSD,"",Approved Go,github.com/google/go-github/v41,v41.0.0,New BSD,"",Approved +Go,github.com/google/go-github/v43,v43.0.0,New BSD,"",Approved Go,github.com/google/go-querystring,v1.1.0,New BSD,"",Approved Go,github.com/google/gofuzz,v1.2.0,Apache 2.0,"",Approved -Go,github.com/google/pprof,v0.0.0-20220128192902-513e8ac6eea1,"Apache 2.0,ISC","",Approved +Go,github.com/google/pprof,v0.0.0-20220412212628-83db2b799d1f,"Apache 2.0,ISC","",Approved Go,github.com/google/uuid,v1.3.0,New BSD,"",Approved -Go,github.com/googleapis/gax-go/v2,v2.1.1,New BSD,"",Approved +Go,github.com/googleapis/gax-go/v2,v2.3.0,New BSD,"",Approved Go,github.com/googleapis/gnostic,v0.5.5,Apache 2.0,"",Approved Go,github.com/gorilla/context,v1.1.1,New BSD,"",Approved Go,github.com/gorilla/csrf,v1.7.1,New BSD,"",Approved @@ -453,7 +528,7 @@ Go,github.com/gosimple/slug,v1.12.0,Mozilla Public License 2.0,"",Approved Go,github.com/gosimple/unidecode,v1.0.1,Apache 2.0,"",Approved Go,github.com/goware/urlx,v0.3.1,MIT,"",Approved Go,github.com/grafana-tools/sdk,v0.0.0-20220203092117-edae16afa87b,Apache 2.0,"",Approved -Go,github.com/grafana/regexp,v0.0.0-20220202152701-6a046c4caf32,New BSD,"",Approved +Go,github.com/grafana/regexp,v0.0.0-20220304095617-2e8d9baf4ac2,New BSD,"",Approved Go,github.com/graph-gophers/graphql-go,v1.3.0,Simplified BSD,"",Approved Go,github.com/graphql-go/graphql,v0.8.0,MIT,"",Approved Go,github.com/gregjones/httpcache,v0.0.0-20190611155906-901d90724c79,MIT,"",Approved @@ -485,10 +560,11 @@ Go,github.com/karrick/godirwalk,v1.16.1,Simplified BSD,"",Approved Go,github.com/keegancsmith/rpc,v1.3.0,New BSD,"",Approved Go,github.com/keegancsmith/sqlf,v1.1.1,MIT,"",Approved Go,github.com/keegancsmith/tmpfriend,v0.0.0-20180423180255-86e88902a513,MIT,"",Approved -Go,github.com/kevinburke/ssh_config,v1.1.0,MIT,"",Approved +Go,github.com/kevinburke/ssh_config,v1.2.0,MIT,"",Approved Go,github.com/klauspost/compress,v1.14.2,"Apache 2.0,MIT,New BSD","",Approved Go,github.com/kr/pretty,v0.3.0,MIT,"",Approved Go,github.com/kr/text,v0.2.0,MIT,"",Approved +Go,github.com/layeh/gopher-json,v0.0.0-20201124131017-552bb3c4c3bf,Public domain,"",Approved Go,github.com/lib/pq,v1.10.4,MIT,"",Approved Go,github.com/lucasb-eyer/go-colorful,v1.2.0,MIT,"",Approved Go,github.com/machinebox/graphql,v0.2.2,Apache 2.0,"",Approved @@ -497,7 +573,7 @@ Go,github.com/mattermost/xml-roundtrip-validator,v0.1.0,Apache 2.0,"",Approved Go,github.com/mattn/go-colorable,v0.1.12,MIT,"",Approved Go,github.com/mattn/go-isatty,v0.0.14,MIT,"",Approved Go,github.com/mattn/go-runewidth,v0.0.13,MIT,"",Approved -Go,github.com/mattn/go-sqlite3,v1.14.11,MIT,"",Approved +Go,github.com/mattn/go-sqlite3,v1.14.12,MIT,"",Approved Go,github.com/matttproud/golang_protobuf_extensions,v1.0.2-0.20181231171920-c182affec369,Apache 2.0,"",Approved Go,github.com/mcuadros/go-version,v0.0.0-20190830083331-035f6764e8d2,MIT,"",Approved Go,github.com/microcosm-cc/bluemonday,v1.0.17,New BSD,"",Approved @@ -533,13 +609,13 @@ Go,github.com/prometheus/common,v0.32.1,"Apache 2.0,New BSD","",Approved Go,github.com/prometheus/common/sigv4,v0.1.0,Apache 2.0,"",Approved Go,github.com/prometheus/procfs,v0.7.3,Apache 2.0,"",Approved Go,github.com/qustavo/sqlhooks/v2,v2.1.0,MIT,"",Approved -Go,github.com/rainycape/unidecode,v0.0.0-20150907023854-cb7f23ec59be,Apache 2.0,"",Approved Go,github.com/rivo/uniseg,v0.2.0,MIT,"",Approved Go,github.com/rjeczalik/notify,v0.9.2,MIT,"",Approved Go,github.com/rogpeppe/go-internal,v1.8.1,New BSD,"",Approved -Go,github.com/rs/xid,v1.3.0,MIT,"",Approved +Go,github.com/rs/xid,v1.4.0,MIT,"",Approved Go,github.com/russellhaering/goxmldsig,v1.1.1,Apache 2.0,"",Approved Go,github.com/russross/blackfriday,v1.5.2,Simplified BSD,"",Approved +Go,github.com/russross/blackfriday/v2,v2.1.0,Simplified BSD,"",Approved Go,github.com/schollz/progressbar/v3,v3.8.5,MIT,"",Approved Go,github.com/segmentio/fasthash,v1.0.3,MIT,"",Approved Go,github.com/segmentio/ksuid,v1.0.4,MIT,"",Approved @@ -550,12 +626,13 @@ Go,github.com/shurcooL/highlight_go,v0.0.0-20191220051317-782971ddf21b,MIT,"",Ap Go,github.com/shurcooL/octicon,v0.0.0-20191102190552-cbb32d6a785c,MIT,"",Approved Go,github.com/shurcooL/sanitized_anchor_name,v1.0.0,MIT,"",Approved Go,github.com/slack-go/slack,v0.10.1,"MIT,Simplified BSD","",Approved +Go,github.com/smacker/go-tree-sitter,v0.0.0-20220209044044-0d3022e933c3,MIT,"",Approved Go,github.com/snabb/diagio,v1.0.0,MIT,"",Approved Go,github.com/snabb/sitemap,v1.0.0,MIT,"",Approved Go,github.com/sourcegraph/alertmanager,v0.21.1-0.20211110092431-863f5b1ee51b,Apache 2.0,"",Approved Go,github.com/sourcegraph/annotate,v0.0.0-20160123013949-f4cad6c6324d,New BSD,"",Approved Go,github.com/sourcegraph/ctxvfs,v0.0.0-20180418081416-2b65f1b1ea81,MIT,"",Approved -Go,github.com/sourcegraph/go-ctags,v0.0.0-20220221141751-78951a22ec08,Apache 2.0,"",Approved +Go,github.com/sourcegraph/go-ctags,v0.0.0-20220404085534-f974026334d7,Apache 2.0,"",Approved Go,github.com/sourcegraph/go-diff,v0.6.1,MIT,"",Approved Go,github.com/sourcegraph/go-jsonschema,v0.0.0-20211011105148-2e30f7bacbe1,MIT,"",Approved Go,github.com/sourcegraph/go-langserver,v2.0.1-0.20181108233942-4a51fa2e1238,"MIT,New BSD","",Approved @@ -568,20 +645,21 @@ Go,github.com/sourcegraph/jsonx,v0.0.0-20200629203448-1a936bd500cf,MIT,"",Approv Go,github.com/sourcegraph/oauth2,v0.0.0-20210825125341-77c1d99ece3c,New BSD,"",Approved Go,github.com/sourcegraph/syntaxhighlight,v0.0.0-20170531221838-bd320f5d308e,New BSD,"",Approved Go,github.com/sourcegraph/yaml,v1.0.1-0.20200714132230-56936252f152,MIT,"",Approved -Go,github.com/sourcegraph/zoekt,v0.0.0-20220317133250-094eea3551a4,Apache 2.0,"",Approved +Go,github.com/sourcegraph/zoekt,v0.0.0-20220415201645-48d1beaad294,Apache 2.0,"",Approved Go,github.com/src-d/gcfg,v1.4.0,New BSD,"",Approved -Go,github.com/stretchr/testify,v1.7.0,MIT,"",Approved +Go,github.com/stretchr/testify,v1.7.1,MIT,"",Approved Go,github.com/stripe/stripe-go,v70.15.0,MIT,"",Approved Go,github.com/throttled/throttled/v2,v2.9.0,New BSD,"",Approved Go,github.com/tidwall/gjson,v1.14.0,MIT,"",Approved Go,github.com/tidwall/match,v1.1.1,MIT,"",Approved Go,github.com/tidwall/pretty,v1.2.0,MIT,"",Approved -Go,github.com/tinylib/msgp,v1.1.2,MIT,"",Approved +Go,github.com/tinylib/msgp,v1.1.6,MIT,"",Approved Go,github.com/tj/go-naturaldate,v1.3.0,MIT,"",Approved Go,github.com/tomnomnom/linkheader,v0.0.0-20180905144013-02ca5825eb80,MIT,"",Approved Go,github.com/uber/gonduit,v0.13.0,MIT,"",Approved Go,github.com/uber/jaeger-client-go,v2.30.0,Apache 2.0,"",Approved Go,github.com/uber/jaeger-lib,v2.4.1,Apache 2.0,"",Approved +Go,github.com/urfave/cli/v2,v2.4.0,MIT,"",Approved Go,github.com/vmihailenco/msgpack/v5,v5.3.5,Simplified BSD,"",Approved Go,github.com/vmihailenco/tagparser/v2,v2.0.0,Simplified BSD,"",Approved Go,github.com/xanzy/ssh-agent,v0.3.1,Apache 2.0,"",Approved @@ -593,28 +671,31 @@ Go,github.com/xhit/go-str2duration/v2,v2.0.0,New BSD,"",Approved Go,github.com/xlab/treeprint,v1.1.0,MIT,"",Approved Go,github.com/yuin/goldmark,v1.4.4,MIT,"",Approved Go,github.com/yuin/goldmark-emoji,v1.0.1,MIT,"",Approved +Go,github.com/yuin/gopher-lua,v0.0.0-20210529063254-f4c35e4016d9,MIT,"",Approved +Yarn,glob-parent,5.1.2,ISC,https://gulpjs.com/,Approved Yarn,glob-to-regexp,0.4.1,Simplified BSD,Unknown,Approved +Yarn,globby,11.1.0,MIT,https://sindresorhus.com,Approved Go,go.etcd.io/bbolt,v1.3.6,MIT,"",Approved Go,go.mongodb.org/mongo-driver,v1.8.3,Apache 2.0,"",Approved Go,go.opencensus.io,v0.23.0,Apache 2.0,"",Approved Go,go.uber.org/atomic,v1.9.0,MIT,"",Approved -Go,go.uber.org/automaxprocs,v1.4.0,MIT,"",Approved +Go,go.uber.org/automaxprocs,v1.5.1,MIT,"",Approved Go,go.uber.org/ratelimit,v0.2.0,MIT,"",Approved -Go,golang.org/x/crypto,v0.0.0-20220315160706-3147a52a75dd,New BSD,"",Approved -Go,golang.org/x/mod,v0.5.1,New BSD,"",Approved -Go,golang.org/x/net,v0.0.0-20220127200216-cd36cc0744dd,New BSD,"",Approved +Go,golang.org/x/crypto,v0.0.0-20220411220226-7b82a4e95df4,New BSD,"",Approved +Go,golang.org/x/mod,v0.6.0-dev.0.20220106191415-9b9b3d81d5e3,New BSD,"",Approved +Go,golang.org/x/net,v0.0.0-20220412020605-290c469a71a5,New BSD,"",Approved Go,golang.org/x/sync,v0.0.0-20210220032951-036812b2e83c,New BSD,"",Approved -Go,golang.org/x/sys,v0.0.0-20220209214540-3681064d5158,New BSD,"",Approved +Go,golang.org/x/sys,v0.0.0-20220412211240-33da011f77ad,New BSD,"",Approved Go,golang.org/x/term,v0.0.0-20210927222741-03fcf44c2211,New BSD,"",Approved Go,golang.org/x/text,v0.3.7,New BSD,"",Approved -Go,golang.org/x/time,v0.0.0-20211116232009-f0f3c7e86c11,New BSD,"",Approved -Go,golang.org/x/tools,v0.1.9,New BSD,"",Approved -Go,golang.org/x/xerrors,v0.0.0-20200804184101-5ec99f83aff1,New BSD,"",Approved -Go,google.golang.org/api,v0.66.0,New BSD,"",Approved -Go,google.golang.org/genproto,v0.0.0-20220202230416-2a053f022f0d,Apache 2.0,"",Approved -Go,google.golang.org/grpc,v1.44.0,Apache 2.0,"",Approved -Go,google.golang.org/protobuf,v1.27.1,New BSD,"",Approved -Go,gopkg.in/DataDog/dd-trace-go.v1,v1.36.2,"Apache 2.0,New BSD","",Approved +Go,golang.org/x/time,v0.0.0-20220411224347-583f2d630306,New BSD,"",Approved +Go,golang.org/x/tools,v0.1.10,New BSD,"",Approved +Go,golang.org/x/xerrors,v0.0.0-20220411194840-2f41105eb62f,New BSD,"",Approved +Go,google.golang.org/api,v0.74.0,New BSD,"",Approved +Go,google.golang.org/genproto,v0.0.0-20220407144326-9054f6ed7bac,Apache 2.0,"",Approved +Go,google.golang.org/grpc,v1.45.0,Apache 2.0,"",Approved +Go,google.golang.org/protobuf,v1.28.0,New BSD,"",Approved +Go,gopkg.in/DataDog/dd-trace-go.v1,v1.37.1,"Apache 2.0,New BSD","",Approved Go,gopkg.in/alexcesaro/statsd.v2,v2.0.0,MIT,"",Approved Go,gopkg.in/inf.v0,v0.9.1,New BSD,"",Approved Go,gopkg.in/natefinch/lumberjack.v2,v2.0.0,MIT,"",Approved @@ -625,13 +706,13 @@ Go,gopkg.in/yaml.v2,v2.4.0,"Apache 2.0,MIT","",Approved Go,gopkg.in/yaml.v3,v3.0.0-20210107192922-496545a6307b,MIT,"",Approved Yarn,got,11.5.2,MIT,Unknown,Approved Yarn,graceful-fs,4.2.9,ISC,Unknown,Approved -Yarn,graphiql,1.3.2,MIT,http://github.com/graphql/graphiql/tree/master/packages/graphiql#readme,Approved -Yarn,graphql-language-service,3.1.2,MIT,https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service#readme,Approved -Yarn,graphql-language-service-interface,2.8.2,MIT,https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service-interface#readme,Approved -Yarn,graphql-language-service-parser,1.9.0,MIT,https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service-parser#readme,Approved -Yarn,graphql-language-service-types,1.8.0,MIT,https://github.com/graphql/graphiql/tree/main/graphql-language-service-types#readme,Approved -Yarn,graphql-language-service-utils,2.5.1,MIT,https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service-utils#readme,Approved +Yarn,graphiql,1.8.0,MIT,http://github.com/graphql/graphiql/tree/master/packages/graphiql#readme,Approved +Yarn,graphql-config,4.2.0,MIT,https://graphql-config.com/,Approved +Yarn,graphql-executor,0.0.22,MIT,https://github.com/yaacovCR/graphql-executor,Approved +Yarn,graphql-language-service,5.0.1,MIT,https://github.com/graphql/graphiql/tree/main/packages/graphql-language-service#readme,Approved +Yarn,graphql-sse,1.1.0,MIT,https://github.com/enisdenjo/graphql-sse#readme,Approved Yarn,graphql-tag,2.12.5,MIT,https://github.com/apollographql/graphql-tag#readme,Approved +Yarn,graphql-ws,5.6.4,MIT,https://github.com/enisdenjo/graphql-ws#readme,Approved Yarn,gud,1.0.0,MIT,Unknown,Approved Yarn,has,1.0.3,MIT,https://github.com/tarruda/has,Approved Yarn,has-ansi,2.0.0,MIT,sindresorhus.com,Approved @@ -640,6 +721,7 @@ Yarn,has-flag,1.0.0,MIT,sindresorhus.com,Approved Yarn,has-flag,3.0.0,MIT,sindresorhus.com,Approved Yarn,has-flag,4.0.0,MIT,sindresorhus.com,Approved Yarn,has-symbols,1.0.2,MIT,http://ljharb.codes,Approved +Yarn,has-tostringtag,1.0.0,MIT,https://github.com/inspect-js/has-tostringtag#readme,Approved Yarn,hex-color-regex,1.1.0,MIT,http://www.tunnckocore.tk,Approved Yarn,highlight.js,10.7.3,New BSD,https://highlightjs.org/,Approved Yarn,highlightjs-graphql,1.0.2,MIT,https://github.com/dpeek/highlightjs-graphql#readme,Approved @@ -651,9 +733,14 @@ Yarn,htmlparser2,6.1.0,MIT,Unknown,Approved Yarn,http-cache-semantics,4.0.3,Simplified BSD,https://kornel.ski/,Approved Yarn,http-status-codes,2.1.4,MIT,Unknown,Approved Yarn,http2-wrapper,1.0.0-beta.5.2,MIT,https://github.com/szmarczak/http2-wrapper#readme,Approved +Yarn,https-browserify,1.0.0,MIT,https://github.com/substack/https-browserify,Approved +Yarn,ieee754,1.2.1,New BSD,https://feross.org,Approved +Yarn,ignore,5.2.0,MIT,Unknown,Approved Yarn,import-fresh,2.0.0,MIT,sindresorhus.com,Approved Yarn,import-fresh,3.3.0,MIT,https://sindresorhus.com,Approved Yarn,indexes-of,1.0.1,MIT,https://github.com/dominictarr/indexes-of,Approved +Yarn,inherits,2.0.4,ISC,Unknown,Approved +Yarn,internal-slot,1.0.3,MIT,https://github.com/ljharb/internal-slot#readme,Approved Yarn,internmap,1.0.1,ISC,https://github.com/mbostock/internmap/,Approved Yarn,invariant,2.2.4,MIT,Unknown,Approved Yarn,is-absolute-url,2.1.0,MIT,http://sindresorhus.com,Approved @@ -663,20 +750,27 @@ Yarn,is-arrayish,0.2.1,MIT,http://github.com/qix-,Approved Yarn,is-arrayish,0.3.2,MIT,http://github.com/qix-,Approved Yarn,is-bigint,1.0.1,MIT,https://github.com/ljharb/is-bigint#readme,Approved Yarn,is-boolean-object,1.1.0,MIT,Unknown,Approved -Yarn,is-callable,1.2.3,MIT,http://ljharb.codes,Approved +Yarn,is-callable,1.2.4,MIT,http://ljharb.codes,Approved Yarn,is-color-stop,1.1.0,MIT,https://github.com/pigcan/is-color-stop#readme,Approved Yarn,is-core-module,2.8.1,MIT,https://github.com/inspect-js/is-core-module,Approved Yarn,is-date-object,1.0.2,MIT,Unknown,Approved Yarn,is-directory,0.3.1,MIT,https://github.com/jonschlinkert/is-directory,Approved +Yarn,is-extglob,2.1.1,MIT,https://github.com/jonschlinkert/is-extglob,Approved +Yarn,is-glob,4.0.1,MIT,https://github.com/micromatch/is-glob,Approved Yarn,is-negative-zero,2.0.1,MIT,https://github.com/inspect-js/is-negative-zero,Approved +Yarn,is-number,7.0.0,MIT,https://github.com/jonschlinkert/is-number,Approved Yarn,is-number-object,1.0.4,MIT,Unknown,Approved Yarn,is-obj,2.0.0,MIT,sindresorhus.com,Approved Yarn,is-plain-object,5.0.0,MIT,https://github.com/jonschlinkert/is-plain-object,Approved -Yarn,is-regex,1.1.3,MIT,https://github.com/inspect-js/is-regex,Approved +Yarn,is-regex,1.1.4,MIT,https://github.com/inspect-js/is-regex,Approved Yarn,is-resolvable,1.1.0,ISC,https://github.com/shinnn,Approved -Yarn,is-string,1.0.6,MIT,Unknown,Approved +Yarn,is-shared-array-buffer,1.0.1,MIT,https://github.com/inspect-js/is-shared-array-buffer#readme,Approved +Yarn,is-string,1.0.7,MIT,Unknown,Approved Yarn,is-symbol,1.0.3,MIT,Unknown,Approved +Yarn,is-weakref,1.0.2,MIT,https://github.com/inspect-js/is-weakref#readme,Approved Yarn,isarray,0.0.1,MIT,https://github.com/juliangruber/isarray,Approved +Yarn,isomorphic-ws,4.0.1,MIT,https://github.com/heineiuo/isomorphic-ws#readme,Approved +Yarn,iterall,1.3.0,MIT,https://github.com/leebyron/iterall,Approved Yarn,iterare,1.2.1,ISC,Unknown,Approved Yarn,jest-worker,27.5.1,MIT,Unknown,Approved Yarn,js-cookie,2.2.1,MIT,Unknown,Approved @@ -696,12 +790,14 @@ Go,k8s.io/kube-openapi,v0.0.0-20220124234850-424119656bbf,Apache 2.0,"",Approved Go,k8s.io/utils,v0.0.0-20220127004650-9b3446523e65,"Apache 2.0,New BSD","",Approved Yarn,keyv,4.0.0,MIT,https://github.com/lukechilds/keyv,Approved Yarn,klona,2.0.4,MIT,https://lukeed.com,Approved +Go,layeh.com/gopher-luar,v1.0.10,Mozilla Public License 2.0,"",Approved Yarn,lines-and-columns,1.1.6,MIT,https://github.com/eventualbuddha/lines-and-columns#readme,Approved Yarn,linguist-languages,7.14.0,MIT,https://github.com/ikatyang/linguist-languages#readme,Approved -Yarn,linkify-it,2.0.3,MIT,Unknown,Approved +Yarn,linkify-it,3.0.3,MIT,Unknown,Approved Yarn,loader-runner,4.2.0,MIT,https://github.com/webpack/loader-runner#readme,Approved Yarn,lodash,4.17.21,MIT,https://lodash.com/,Approved Yarn,lodash.debounce,4.0.8,MIT,https://lodash.com/,Approved +Yarn,lodash.get,4.4.2,MIT,https://lodash.com/,Approved Yarn,lodash.isequal,4.5.0,MIT,https://lodash.com/,Approved Yarn,lodash.memoize,4.1.2,MIT,https://lodash.com/,Approved Yarn,lodash.throttle,4.1.1,MIT,https://lodash.com/,Approved @@ -709,7 +805,9 @@ Yarn,lodash.uniq,4.5.0,MIT,https://lodash.com/,Approved Yarn,loose-envify,1.4.0,MIT,https://github.com/zertosh/loose-envify,Approved Yarn,lowercase-keys,2.0.0,MIT,sindresorhus.com,Approved Yarn,lru-cache,6.0.0,ISC,Unknown,Approved -Yarn,markdown-it,10.0.0,MIT,Unknown,Approved +Yarn,lru-cache,7.8.0,ISC,Unknown,Approved +Yarn,make-error,1.3.6,ISC,https://github.com/JsCommunity/make-error,Approved +Yarn,markdown-it,12.3.2,MIT,Unknown,Approved Yarn,marked,4.0.0,MIT,https://marked.js.org/,Approved Yarn,math-expression-evaluator,1.2.17,MIT,https://github.com/redhivesoftware/math-expression-evaluator#readme,Approved Yarn,mdi-react,8.1.0,(MIT AND OFL-1.1),https://github.com/levrik/mdi-react,Approved @@ -718,12 +816,16 @@ Yarn,mdn-data,2.0.4,CC0-1.0,https://developer.mozilla.org/,Approved Yarn,mdurl,1.0.1,MIT,Unknown,Approved Yarn,memoize-one,5.0.4,MIT,Unknown,Approved Yarn,merge-stream,2.0.0,MIT,Unknown,Approved +Yarn,merge2,1.4.1,MIT,https://github.com/teambition/merge2,Approved +Yarn,meros,1.2.0,MIT,https://marais.io,Approved +Yarn,micromatch,4.0.4,MIT,https://github.com/micromatch/micromatch,Approved Yarn,mime-db,1.49.0,MIT,Unknown,Approved Yarn,mime-types,2.1.32,MIT,Unknown,Approved Yarn,mimic-response,1.0.1,MIT,sindresorhus.com,Approved Yarn,mimic-response,3.1.0,MIT,https://sindresorhus.com,Approved Yarn,mini-create-react-context,0.4.0,MIT,Unknown,Approved Yarn,minimatch,3.0.4,ISC,http://blog.izs.me,Approved +Yarn,minimatch,4.2.1,ISC,http://blog.izs.me,Approved Yarn,minimist,1.2.5,MIT,https://github.com/substack/minimist,Approved Yarn,mitt,2.1.0,MIT,https://github.com/developit/mitt,Approved Yarn,mkdirp,0.5.5,MIT,http://substack.net,Approved @@ -732,22 +834,25 @@ Yarn,monaco-yaml,3.2.1,MIT,https://monaco-yaml.js.org/,Approved Yarn,nanoid,3.2.0,MIT,Unknown,Approved Yarn,neo-async,2.6.2,MIT,https://github.com/suguru03/neo-async,Approved Yarn,nice-ticks,1.0.1,ISC,https://github.com/cenfun/nice-ticks#readme,Approved -Yarn,node-fetch,2.6.1,MIT,https://github.com/bitinn/node-fetch,Approved +Yarn,node-domexception,1.0.0,MIT,https://github.com/jimmywarting/node-domexception#readme,Approved +Yarn,node-fetch,2.6.7,MIT,https://github.com/bitinn/node-fetch,Approved Yarn,node-releases,2.0.2,MIT,Unknown,Approved +Yarn,normalize-path,2.1.1,MIT,https://github.com/jonschlinkert/normalize-path,Approved Yarn,normalize-url,3.3.0,MIT,sindresorhus.com,Approved Yarn,normalize-url,4.3.0,MIT,sindresorhus.com,Approved Yarn,nth-check,1.0.2,Simplified BSD,https://github.com/fb55/nth-check,Approved Yarn,nullthrows,1.1.1,MIT,Unknown,Approved Yarn,object-assign,4.1.1,MIT,sindresorhus.com,Approved -Yarn,object-inspect,1.10.3,MIT,https://github.com/inspect-js/object-inspect,Approved +Yarn,object-inspect,1.12.0,MIT,https://github.com/inspect-js/object-inspect,Approved Yarn,object-is,1.1.5,MIT,https://github.com/es-shims/object-is,Approved Yarn,object-keys,1.1.1,MIT,http://ljharb.codes,Approved Yarn,object.assign,4.1.2,MIT,Unknown,Approved -Yarn,object.getownpropertydescriptors,2.1.2,MIT,Unknown,Approved +Yarn,object.getownpropertydescriptors,2.1.3,MIT,Unknown,Approved Yarn,object.values,1.1.1,MIT,Unknown,Approved Yarn,once,1.4.0,ISC,http://blog.izs.me/,Approved Yarn,open-color,1.8.0,MIT,https://github.com/yeun/open-color,Approved Yarn,optimism,0.16.1,MIT,https://github.com/benjamn/optimism#readme,Approved +Yarn,original,1.0.2,MIT,Unknown,Approved Yarn,p-cancelable,2.0.0,MIT,sindresorhus.com,Approved Yarn,p-limit,3.1.0,MIT,https://sindresorhus.com,Approved Yarn,parent-module,1.0.1,MIT,sindresorhus.com,Approved @@ -759,10 +864,12 @@ Yarn,path-parse,1.0.7,MIT,https://github.com/jbgutierrez/path-parse#readme,Appro Yarn,path-to-regexp,1.7.0,MIT,Unknown,Approved Yarn,path-type,4.0.0,MIT,sindresorhus.com,Approved Yarn,performance-now,2.1.0,MIT,https://github.com/braveg1rl/performance-now,Approved +Yarn,picocolors,0.2.1,ISC,Unknown,Approved Yarn,picocolors,1.0.0,ISC,Unknown,Approved +Yarn,picomatch,2.3.1,MIT,https://github.com/micromatch/picomatch,Approved Yarn,popper.js,1.15.0,MIT,https://popper.js.org/,Approved Yarn,postcss,6.0.1,MIT,http://postcss.org/,Approved -Yarn,postcss,7.0.36,MIT,https://postcss.org/,Approved +Yarn,postcss,7.0.39,MIT,https://postcss.org/,Approved Yarn,postcss,8.4.5,MIT,https://postcss.org/,Approved Yarn,postcss-calc,7.0.5,MIT,Unknown,Approved Yarn,postcss-colormin,4.0.3,MIT,https://github.com/cssnano/cssnano,Approved @@ -802,13 +909,14 @@ Yarn,prop-types,15.7.2,MIT,https://facebook.github.io/react/,Approved Yarn,pump,3.0.0,MIT,Unknown,Approved Yarn,punycode,2.1.1,MIT,https://mths.be/punycode,Approved Yarn,q,1.5.1,MIT,https://github.com/kriskowal/q,Approved +Yarn,querystringify,2.2.0,MIT,https://github.com/unshiftio/querystringify,Approved Yarn,quick-lru,5.1.1,MIT,https://sindresorhus.com,Approved Yarn,raf,3.4.1,MIT,Unknown,Approved Yarn,randombytes,2.1.0,MIT,https://github.com/crypto-browserify/randombytes,Approved -Yarn,react,16.14.0,MIT,https://reactjs.org/,Approved +Yarn,react,17.0.2,MIT,https://reactjs.org/,Approved Yarn,react-circular-progressbar,2.0.3,MIT,Unknown,Approved Yarn,react-clientside-effect,1.2.5,MIT,https://github.com/thekashey/react-clientside-effect,Approved -Yarn,react-dom,16.14.0,MIT,https://reactjs.org/,Approved +Yarn,react-dom,17.0.2,MIT,https://reactjs.org/,Approved Yarn,react-dom-confetti,0.1.4,MIT,Unknown,Approved Yarn,react-draggable,4.4.3,MIT,https://github.com/mzabriskie/react-draggable,Approved Yarn,react-elm-components,1.1.0,New BSD,https://github.com/evancz/react-elm,Approved @@ -835,6 +943,7 @@ Yarn,react-transition-group,4.4.1,New BSD,https://github.com/reactjs/react-trans Yarn,react-use-measure,2.0.4,MIT,Unknown,Approved Yarn,react-visibility-sensor,5.1.1,MIT,Unknown,Approved Yarn,reactstrap,8.9.0,MIT,https://github.com/reactstrap/reactstrap#readme,Approved +Yarn,readable-stream,3.6.0,MIT,Unknown,Approved Yarn,recharts,1.8.5,MIT,https://github.com/recharts/recharts,Approved Yarn,recharts-scale,0.4.2,MIT,https://github.com/recharts/recharts-scale,Approved Yarn,reduce-css-calc,1.3.0,MIT,Unknown,Approved @@ -842,59 +951,69 @@ Yarn,reduce-function-call,1.0.3,MIT,Unknown,Approved Yarn,regenerator-runtime,0.13.7,MIT,Unknown,Approved Yarn,regexp.prototype.flags,1.3.1,MIT,Unknown,Approved Yarn,regexpp,3.1.0,MIT,https://github.com/mysticatea/regexpp#readme,Approved +Yarn,remove-trailing-separator,1.1.0,ISC,https://github.com/darsain/remove-trailing-separator#readme,Approved Yarn,require-from-string,2.0.2,MIT,github.com/floatdrop,Approved Yarn,requireindex,1.1.0,MIT,http://person.sh,Approved +Yarn,requires-port,1.0.0,MIT,https://github.com/unshiftio/requires-port,Approved Yarn,resize-observer-polyfill,1.5.1,MIT,https://github.com/que-etc/resize-observer-polyfill,Approved Yarn,resolve,1.22.0,MIT,http://substack.net,Approved Yarn,resolve-alpn,1.0.0,MIT,https://github.com/szmarczak/resolve-alpn#readme,Approved Yarn,resolve-from,3.0.0,MIT,sindresorhus.com,Approved Yarn,resolve-from,4.0.0,MIT,sindresorhus.com,Approved +Yarn,resolve-from,5.0.0,MIT,sindresorhus.com,Approved Yarn,resolve-pathname,2.2.0,MIT,Unknown,Approved Yarn,responselike,2.0.0,MIT,Unknown,Approved +Yarn,reusify,1.0.4,MIT,https://github.com/mcollina/reusify#readme,Approved Yarn,rgb-regex,1.0.1,MIT,https://github.com/regexps/rgb-regex,Approved Yarn,rgba-regex,1.0.0,MIT,https://github.com/johnotander/rgba-regex,Approved +Yarn,run-parallel,1.1.9,MIT,https://github.com/feross/run-parallel,Approved Yarn,rxjs,6.6.3,Apache 2.0,https://github.com/ReactiveX/RxJS,Approved Yarn,safe-buffer,5.1.2,MIT,https://github.com/feross/safe-buffer,Approved Yarn,sanitize-html,2.3.3,MIT,Unknown,Approved Yarn,sax,1.2.4,ISC,http://blog.izs.me/,Approved -Yarn,scheduler,0.19.1,MIT,https://reactjs.org/,Approved +Yarn,scheduler,0.20.2,MIT,https://reactjs.org/,Approved Yarn,schema-utils,3.1.0,MIT,https://github.com/webpack/schema-utils,Approved Yarn,semver,7.3.5,ISC,Unknown,Approved Yarn,serialize-javascript,6.0.0,New BSD,https://github.com/yahoo/serialize-javascript,Approved Yarn,shepherd.js,8.3.1,MIT,https://shepherdjs.dev/,Approved +Yarn,side-channel,1.0.4,MIT,https://github.com/ljharb/side-channel#readme,Approved Go,sigs.k8s.io/json,v0.0.0-20211208200746-9f7c6b3444d2,Apache 2.0,"",Approved Go,sigs.k8s.io/kustomize/kyaml,v0.13.3,"Apache 2.0,MIT","",Approved Go,sigs.k8s.io/structured-merge-diff/v4,v4.2.1,Apache 2.0,"",Approved Go,sigs.k8s.io/yaml,v1.3.0,MIT,"",Approved Yarn,simple-swizzle,0.2.2,MIT,http://github.com/qix-,Approved +Yarn,slash,3.0.0,MIT,sindresorhus.com,Approved Yarn,smoothscroll-polyfill,0.4.4,MIT,https://iamdustan.com/smoothscroll,Approved -Yarn,source-list-map,2.0.1,MIT,https://github.com/webpack/source-list-map,Approved Yarn,source-map,0.5.7,New BSD,https://github.com/mozilla/source-map,Approved Yarn,source-map,0.6.1,New BSD,https://github.com/mozilla/source-map,Approved Yarn,source-map,0.7.3,New BSD,https://github.com/mozilla/source-map,Approved Yarn,source-map-js,1.0.2,New BSD,https://github.com/7rulnik/source-map-js,Approved Yarn,source-map-support,0.5.19,MIT,Unknown,Approved Yarn,sourcegraph,25.5.0,Apache 2.0,https://github.com/sourcegraph/sourcegraph,Approved -Yarn,sourcegraph-preview,0.0.2,Apache 2.0,Unknown,Approved Yarn,sprintf-js,1.0.3,New BSD,http://alexei.ro/,Approved Yarn,stable,0.1.8,MIT,Unknown,Approved +Yarn,stream-http,3.2.0,MIT,https://github.com/jhiesey/stream-http#readme,Approved +Yarn,string-env-interpolation,1.0.1,MIT,Unknown,Approved Yarn,string-score,1.0.1,MIT,https://github.com/KenPowers/string-score,Approved Yarn,string.prototype.trimend,1.0.4,MIT,Unknown,Approved Yarn,string.prototype.trimstart,1.0.4,MIT,Unknown,Approved +Yarn,string_decoder,1.1.1,MIT,https://github.com/nodejs/string_decoder,Approved Yarn,strip-ansi,3.0.1,MIT,sindresorhus.com,Approved Yarn,style-mod,4.0.0,MIT,Unknown,Approved Yarn,stylehacks,4.0.3,MIT,https://github.com/cssnano/cssnano,Approved Yarn,stylis,4.0.13,MIT,https://github.com/thysultan/stylis.js,Approved +Yarn,subscriptions-transport-ws,0.11.0,MIT,Unknown,Approved Yarn,supports-color,2.0.0,MIT,sindresorhus.com,Approved Yarn,supports-color,3.2.3,MIT,sindresorhus.com,Approved Yarn,supports-color,5.5.0,MIT,sindresorhus.com,Approved -Yarn,supports-color,6.1.0,MIT,sindresorhus.com,Approved Yarn,supports-color,8.1.1,MIT,https://sindresorhus.com,Approved Yarn,supports-preserve-symlinks-flag,1.0.0,MIT,https://github.com/inspect-js/node-supports-preserve-symlinks-flag#readme,Approved Yarn,svgo,1.3.2,MIT,https://github.com/svg/svgo,Approved +Yarn,symbol-observable,1.2.0,MIT,Unknown,Approved Yarn,symbol-observable,4.0.0,MIT,Unknown,Approved +Yarn,sync-fetch,0.3.1,MIT,https://github.com/larsgw/sync-fetch#readme,Approved Yarn,tabbable,4.0.0,MIT,https://github.com/davidtheclark/tabbable#readme,Approved -Yarn,tabbable,5.1.5,MIT,https://github.com/focus-trap/tabbable#readme,Approved +Yarn,tabbable,5.2.1,MIT,https://github.com/focus-trap/tabbable#readme,Approved Yarn,tagged-template-noop,2.1.1,MIT,https://github.com/lleaff/tagged-template-noop#readme,Approved Yarn,tapable,2.2.0,MIT,https://github.com/webpack/tapable,Approved Yarn,terser,5.7.1,Simplified BSD,https://terser.org/,Approved @@ -904,17 +1023,23 @@ Yarn,timsort,0.3.0,MIT,https://github.com/mziccard/node-timsort,Approved Yarn,tiny-invariant,1.0.3,MIT,Unknown,Approved Yarn,tiny-warning,1.0.3,MIT,Unknown,Approved Yarn,to-fast-properties,2.0.0,MIT,sindresorhus.com,Approved +Yarn,to-regex-range,5.0.1,MIT,https://github.com/micromatch/to-regex-range,Approved Yarn,toggle-selection,1.0.6,MIT,sudodoki.name,Approved +Yarn,tr46,0.0.3,MIT,https://github.com/Sebmaster/tr46.js#readme,Approved Yarn,ts-invariant,0.9.4,MIT,https://github.com/apollographql/invariant-packages,Approved Yarn,ts-key-enum,2.0.8,MIT,https://gitlab.com/nfriend/ts-key-enum#readme,Approved +Yarn,ts-node,9.1.1,MIT,https://github.com/TypeStrong/ts-node,Approved Yarn,tslib,2.1.0,BSD Zero Clause License,https://www.typescriptlang.org/,Approved Yarn,typed-styles,0.0.7,MIT,Unknown,Approved Yarn,uc.micro,1.0.5,MIT,Unknown,Approved Yarn,unbox-primitive,1.0.1,MIT,https://github.com/ljharb/unbox-primitive#readme,Approved +Yarn,undici,4.16.0,MIT,https://undici.nodejs.org/,Approved Yarn,uniq,1.0.1,MIT,Unknown,Approved Yarn,uniqs,2.0.0,MIT,Unknown,Approved +Yarn,unixify,1.0.0,MIT,https://github.com/jonschlinkert/unixify,Approved Yarn,unquote,1.1.1,MIT,https://github.com/lakenen/node-unquote,Approved Yarn,uri-js,4.4.1,Simplified BSD,https://github.com/garycourt/uri-js,Approved +Yarn,url-parse,1.5.4,MIT,Unknown,Approved Yarn,use-callback-ref,1.2.5,MIT,Unknown,Approved Yarn,use-deep-compare-effect,1.6.1,MIT,https://github.com/kentcdodds/use-deep-compare-effect#readme,Approved Yarn,use-resize-observer,7.0.0,MIT,Unknown,Approved @@ -924,24 +1049,33 @@ Yarn,util.promisify,1.0.0,MIT,https://github.com/ljharb/util.promisify#readme,Ap Yarn,utility-types,3.10.0,MIT,https://github.com/piotrwitek/utility-types,Approved Yarn,uuid,8.3.2,MIT,Unknown,Approved Yarn,value-equal,0.2.1,MIT,Unknown,Approved +Yarn,value-or-promise,1.0.11,MIT,Unknown,Approved Yarn,vendors,1.0.4,MIT,https://wooorm.com,Approved Yarn,vscode-languageserver-textdocument,1.0.2,MIT,Unknown,Approved Yarn,vscode-languageserver-types,3.15.1,MIT,Unknown,Approved Yarn,w3c-keyname,2.2.4,MIT,https://github.com/marijnh/w3c-keyname#readme,Approved Yarn,warning,3.0.0,New BSD,https://github.com/BerkeleyTrue/warning,Approved Yarn,warning,4.0.3,MIT,https://github.com/BerkeleyTrue/warning,Approved -Yarn,watchpack,2.2.0,MIT,https://github.com/webpack/watchpack,Approved +Yarn,watchpack,2.3.1,MIT,https://github.com/webpack/watchpack,Approved +Yarn,web-streams-polyfill,3.2.0,MIT,https://github.com/MattiasBuelens/web-streams-polyfill#readme,Approved +Yarn,web-streams-polyfill,4.0.0-beta.1,MIT,https://github.com/MattiasBuelens/web-streams-polyfill#readme,Approved Yarn,webext-additional-permissions,1.0.0,MIT,bfred.it,Approved Yarn,webext-domain-permission-toggle,1.0.1,MIT,bfred.it,Approved Yarn,webextension-polyfill,0.6.0,Mozilla Public License 2.0,https://github.com/mozilla/webextension-polyfill,Approved -Yarn,webpack,5.45.1,MIT,https://github.com/webpack/webpack,Approved -Yarn,webpack-sources,2.3.0,MIT,https://github.com/webpack/webpack-sources#readme,Approved +Yarn,webidl-conversions,3.0.1,Simplified BSD,https://domenic.me/,Approved +Yarn,webpack,5.70.0,MIT,https://github.com/webpack/webpack,Approved +Yarn,webpack-sources,3.2.3,MIT,https://github.com/webpack/webpack-sources#readme,Approved +Yarn,whatwg-url,5.0.0,MIT,Unknown,Approved Yarn,which-boxed-primitive,1.0.2,MIT,https://github.com/inspect-js/which-boxed-primitive#readme,Approved Yarn,wrappy,1.0.2,ISC,https://github.com/npm/wrappy,Approved +Yarn,ws,7.5.7,MIT,https://github.com/websockets/ws,Approved +Yarn,ws,8.5.0,MIT,https://github.com/websockets/ws,Approved +Yarn,xtend,4.0.2,MIT,https://github.com/Raynos/xtend,Approved Yarn,yallist,4.0.0,ISC,http://blog.izs.me/,Approved Yarn,yaml,1.10.0,ISC,https://eemeli.org/yaml/,Approved Yarn,yaml-ast-parser,0.0.43,Apache 2.0,https://github.com/mulesoft-labs/yaml-ast-parser,Approved Yarn,yaml-language-server-parser,0.1.3,Apache 2.0,https://github.com/redhat-developer/yaml-ast-parser,Approved +Yarn,yn,3.1.1,MIT,sindresorhus.com,Approved Yarn,yocto-queue,0.1.0,MIT,https://sindresorhus.com,Approved Yarn,zen-observable,0.8.15,MIT,https://github.com/zenparsing/zen-observable,Approved Yarn,zen-observable-ts,1.2.3,MIT,Unknown,Approved