From e2ba3fef66ad07fc4ac0a728ff4daec0a0585df8 Mon Sep 17 00:00:00 2001 From: Rich Alimi Date: Fri, 9 Sep 2022 22:05:14 -0700 Subject: [PATCH 01/31] Add an option to automatically load unecrypted keys on startup. Remaining todo: - Actually load the key upon startup (and when added too?) - Add tests. --- go/dom/dom.go | 5 +++++ go/keys/client.go | 12 +++++++----- go/keys/client_test.go | 6 ++++-- go/keys/manager.go | 16 ++++++++++++++-- go/keys/manager_test.go | 4 ++-- go/optionsui/ui.go | 8 +++++--- html/options.html | 4 ++++ 7 files changed, 41 insertions(+), 14 deletions(-) diff --git a/go/dom/dom.go b/go/dom/dom.go index b8a47670..ade5b383 100644 --- a/go/dom/dom.go +++ b/go/dom/dom.go @@ -172,6 +172,11 @@ func TextContent(o js.Value) string { return o.Get("textContent").String() } +// Checked returns true if a checkbox is checked, and false otherwise. +func Checked(o js.Value) bool { + return o.Get("checked").Truthy() +} + // AppendChild adds the child object. If non-nil, the populate() function is // invoked on the child to initialize it. func AppendChild(parent, child js.Value, populate func(child js.Value)) { diff --git a/go/keys/client.go b/go/keys/client.go index 7ef4390b..4f97a1e1 100644 --- a/go/keys/client.go +++ b/go/keys/client.go @@ -85,9 +85,10 @@ type rspLoaded struct { } type msgAdd struct { - Type int `js:"type"` - Name string `js:"name"` - PEMPrivateKey string `js:"pemPrivateKey"` + Type int `js:"type"` + Name string `js:"name"` + PEMPrivateKey string `js:"pemPrivateKey"` + Options KeyOptions `js:"options"` } type rspAdd struct { @@ -198,7 +199,7 @@ func (s *Server) OnMessage(ctx jsutil.AsyncContext, headerObj js.Value, sender j return s.makeErrorResponse(fmt.Errorf("failed to parse Add message: %v", err)) } jsutil.LogDebug("Server.OnMessage(Add req): name=%s", m.Name) - err := s.mgr.Add(ctx, m.Name, m.PEMPrivateKey) + err := s.mgr.Add(ctx, m.Name, m.PEMPrivateKey, m.Options) rsp := rspAdd{ Type: msgTypeAddRsp, Err: makeErrStr(err), @@ -294,11 +295,12 @@ func (c *client) Loaded(ctx jsutil.AsyncContext) ([]*LoadedKey, error) { } // Add implements Manager.Add. -func (c *client) Add(ctx jsutil.AsyncContext, name string, pemPrivateKey string) error { +func (c *client) Add(ctx jsutil.AsyncContext, name string, pemPrivateKey string, options KeyOptions) error { var msg msgAdd msg.Type = msgTypeAdd msg.Name = name msg.PEMPrivateKey = pemPrivateKey + msg.Options = options jsutil.LogDebug("Client.Add(req): name=%s", msg.Name) rspObj, err := c.msg.Send(ctx, vert.ValueOf(msg).JSValue()) jsutil.LogDebug("Client.Add(rsp)") diff --git a/go/keys/client_test.go b/go/keys/client_test.go index b92049d3..fb994e72 100644 --- a/go/keys/client_test.go +++ b/go/keys/client_test.go @@ -28,6 +28,7 @@ type dummyManager struct { ID ID Name string PEMPrivateKey string + Options KeyOptions Passphrase string ConfiguredKeys []*ConfiguredKey LoadedKeys []*LoadedKey @@ -39,9 +40,10 @@ func (m *dummyManager) Configured(ctx jsutil.AsyncContext) ([]*ConfiguredKey, er return m.ConfiguredKeys, m.Err } -func (m *dummyManager) Add(ctx jsutil.AsyncContext, name string, pemPrivateKey string) error { +func (m *dummyManager) Add(ctx jsutil.AsyncContext, name string, pemPrivateKey string, options KeyOptions) error { m.Name = name m.PEMPrivateKey = pemPrivateKey + m.Options = options return m.Err } @@ -112,7 +114,7 @@ func TestClientServerAdd(t *testing.T) { mgr.Err = wantErr - err := cli.Add(ctx, wantName, wantPrivateKey) + err := cli.Add(ctx, wantName, wantPrivateKey, KeyOptions{}) if diff := cmp.Diff(mgr.Name, wantName); diff != "" { t.Errorf("incorrect name; -got +want: %s", diff) } diff --git a/go/keys/manager.go b/go/keys/manager.go index 5ce9ddeb..b4f7fd01 100644 --- a/go/keys/manager.go +++ b/go/keys/manager.go @@ -54,6 +54,9 @@ type ConfiguredKey struct { // Encrypted indicates if the key is encrypted and requires a passphrase // to load. Encrypted bool `js:"encrypted"` + // AutoLoad indicates if the key will be automatically loaded on startup. + // Only applies to unencrypted keys. + AutoLoad bool `js:"autoload"` } // LoadedKey is a key loaded into the agent. @@ -102,6 +105,13 @@ func (k *LoadedKey) ID() ID { return ID(strings.TrimPrefix(k.Comment, commentPrefix)) } +// KeyOptions are additional options that can be configured for a key. +type KeyOptions struct { + // AutoLoad indicates that the key will be automatically loaded at + // startup. Only applies to unencrypted keys. + AutoLoad bool `js:"autoLoad"` +} + // Manager provides an API for managing configured keys and loading them into // an SSH agent. type Manager interface { @@ -110,7 +120,7 @@ type Manager interface { // Add configures a new key. name is a human-readable name describing // the key, and pemPrivateKey is the PEM-encoded private key. - Add(ctx jsutil.AsyncContext, name string, pemPrivateKey string) error + Add(ctx jsutil.AsyncContext, name string, pemPrivateKey string, options KeyOptions) error // Remove removes the key with the specified ID. // @@ -161,6 +171,7 @@ type storedKey struct { ID string `js:"id"` Name string `js:"name"` PEMPrivateKey string `js:"pemPrivateKey"` + AutoLoad bool `js:"autoLoad"` } // EncryptedPKCS8 determines if the private key is an encrypted PKCS#8 formatted @@ -289,7 +300,7 @@ var ( ) // Add implements Manager.Add. -func (m *DefaultManager) Add(ctx jsutil.AsyncContext, name string, pemPrivateKey string) error { +func (m *DefaultManager) Add(ctx jsutil.AsyncContext, name string, pemPrivateKey string, options KeyOptions) error { if name == "" { return fmt.Errorf("%w: name must not be empty", errInvalidName) } @@ -303,6 +314,7 @@ func (m *DefaultManager) Add(ctx jsutil.AsyncContext, name string, pemPrivateKey ID: i.String(), Name: name, PEMPrivateKey: pemPrivateKey, + AutoLoad: options.AutoLoad, } return m.storedKeys.Write(ctx, sk) } diff --git a/go/keys/manager_test.go b/go/keys/manager_test.go index 99cdac8b..a7bf4611 100644 --- a/go/keys/manager_test.go +++ b/go/keys/manager_test.go @@ -48,7 +48,7 @@ var ( func newTestManager(ctx jsutil.AsyncContext, agent agent.Agent, syncStorage, sessionStorage storage.Area, keys []*initialKey) (*DefaultManager, error) { mgr := NewManager(agent, syncStorage, sessionStorage) for _, k := range keys { - if err := mgr.Add(ctx, k.Name, k.PEMPrivateKey); err != nil { + if err := mgr.Add(ctx, k.Name, k.PEMPrivateKey, KeyOptions{}); err != nil { return nil, err } @@ -125,7 +125,7 @@ func TestAdd(t *testing.T) { } // Add the key. - err = mgr.Add(ctx, tc.name, tc.pemPrivateKey) + err = mgr.Add(ctx, tc.name, tc.pemPrivateKey, KeyOptions{}) if diff := cmp.Diff(err, tc.wantErr, cmpopts.EquateErrors()); diff != "" { t.Errorf("incorrect error; -got +want: %s", diff) } diff --git a/go/optionsui/ui.go b/go/optionsui/ui.go index 27e58eb6..609efa0f 100644 --- a/go/optionsui/ui.go +++ b/go/optionsui/ui.go @@ -120,12 +120,12 @@ func (u *UI) setError(err error) { // and the corresponding private key. If the user continues, the key is // added to the manager. func (u *UI) add(ctx jsutil.AsyncContext, evt dom.Event) { - ok, name, privateKey := u.promptAdd(ctx) + ok, name, privateKey, autoLoad := u.promptAdd(ctx) if !ok { return } - if err := u.mgr.Add(ctx, name, privateKey); err != nil { + if err := u.mgr.Add(ctx, name, privateKey, autoLoad); err != nil { u.setError(fmt.Errorf("failed to add key: %v", err)) return } @@ -135,11 +135,12 @@ func (u *UI) add(ctx jsutil.AsyncContext, evt dom.Event) { } // promptAdd displays a dialog prompting the user for a name and private key. -func (u *UI) promptAdd(ctx jsutil.AsyncContext) (ok bool, name, privateKey string) { +func (u *UI) promptAdd(ctx jsutil.AsyncContext) (ok bool, name, privateKey string, options keys.KeyOptions) { dialog := dom.NewDialog(u.dom.GetElement("addDialog")) form := u.dom.GetElement("addForm") nameField := u.dom.GetElement("addName") keyField := u.dom.GetElement("addKey") + autoLoadField := u.dom.GetElement("addAutoLoad") cancel := u.dom.GetElement("addCancel") sig := newSignal() @@ -148,6 +149,7 @@ func (u *UI) promptAdd(ctx jsutil.AsyncContext) (ok bool, name, privateKey strin ok = true name = dom.Value(nameField) privateKey = dom.Value(keyField) + options.AutoLoad = dom.Checked(autoLoadField) dialog.Close() sig.Notify() })) diff --git a/html/options.html b/html/options.html index 3a67c276..5fd65b44 100644 --- a/html/options.html +++ b/html/options.html @@ -53,6 +53,10 @@
+
+ + +
From 02895edef862da8dd70f1b54d5999971a8fe11da Mon Sep 17 00:00:00 2001 From: Rich Alimi Date: Sat, 10 Sep 2022 21:35:05 -0700 Subject: [PATCH 02/31] Add library to store a singular typed value in storage --- go/storage/BUILD.bazel | 2 + go/storage/value.go | 79 +++++++++++++++++++++++++ go/storage/value_test.go | 125 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 206 insertions(+) create mode 100644 go/storage/value.go create mode 100644 go/storage/value_test.go diff --git a/go/storage/BUILD.bazel b/go/storage/BUILD.bazel index 8c4d3293..4a127a2c 100644 --- a/go/storage/BUILD.bazel +++ b/go/storage/BUILD.bazel @@ -10,6 +10,7 @@ go_library( "raw.go", "typed.go", "view.go", + "value.go", ], importpath = "github.com/google/chrome-ssh-agent/go/storage", visibility = ["//visibility:public"], @@ -27,6 +28,7 @@ go_wasm_test( "raw_test.go", "typed_test.go", "view_test.go", + "value_test.go", ], embed = [":storage"], node_deps = [ diff --git a/go/storage/value.go b/go/storage/value.go new file mode 100644 index 00000000..b0c9a066 --- /dev/null +++ b/go/storage/value.go @@ -0,0 +1,79 @@ +//go:build js + +// Copyright 2022 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package storage + +import ( + "syscall/js" + "errors" + + "github.com/google/chrome-ssh-agent/go/jsutil" + "github.com/norunners/vert" +) + +const ( + // valueKey is the key under which the singular value is stored. + valueKey = "current" +) + +var ( + errParse = errors.New("parse failed") +) + +// Value reads and writes a singular value. +type Value[V any] struct { + store Area +} + +// NewValue returns a new Value using the underlying persistent store. +// keyPrefix is the prefix used to distinguish values from others in the same +// underlying store; multiple may be supplied to support migration scenarios. +func NewValue[V any](store Area, keyPrefix []string) *Value[V] { + return &Value[V]{ + store: NewView(keyPrefix, store), + } +} + +// Get reads the current value from storage. If it doesn't exist, the zero +// value is returned. +func (v *Value[V]) Get(ctx jsutil.AsyncContext) (V, error) { + var zero V + + data, err := v.store.Get(ctx) + if err != nil { + return zero, err + } + + val, present := data[valueKey] + if !present { + return zero, nil + } + + var tv V + if err := vert.ValueOf(val).AssignTo(&tv); err != nil { + return zero, errParse + } + + return tv, nil +} + +// Set writes a new value to storage. +func (v *Value[V]) Set(ctx jsutil.AsyncContext, val V) error { + data := map[string]js.Value{ + valueKey: vert.ValueOf(val).JSValue(), + } + return v.store.Set(ctx, data) +} diff --git a/go/storage/value_test.go b/go/storage/value_test.go new file mode 100644 index 00000000..c0964e92 --- /dev/null +++ b/go/storage/value_test.go @@ -0,0 +1,125 @@ +// Copyright 2022 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package storage + +import ( + "syscall/js" + "testing" + + "github.com/google/chrome-ssh-agent/go/jsutil" + jut "github.com/google/chrome-ssh-agent/go/jsutil/testing" + st "github.com/google/chrome-ssh-agent/go/storage/testing" + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + "github.com/norunners/vert" +) + +func TestValueGet(t *testing.T) { + testcases := []struct { + description string + init map[string]js.Value + want myStruct + wantErr error + }{ + { + description: "no value present", + want: myStruct{}, + }, + { + description: "parse values", + init: map[string]js.Value{ + testKeyPrefix + "." + valueKey: vert.ValueOf(&myStruct{IntField: 42}).JSValue(), + }, + want: myStruct{IntField: 42}, + }, + { + description: "error on unparseable value", + init: map[string]js.Value{ + testKeyPrefix + "." + valueKey: js.ValueOf(42), + }, + wantErr: errParse, + }, + } + + for _, tc := range testcases { + t.Run(tc.description, func(t *testing.T) { + jut.DoSync(func(ctx jsutil.AsyncContext) { + store := NewRaw(st.NewMemArea()) + if err := store.Set(ctx, tc.init); err != nil { + t.Fatalf("Set failed: %v", err) + } + + vs := NewValue[myStruct](store, testKeyPrefixes) + + got, err := vs.Get(ctx) + if diff := cmp.Diff(got, tc.want); diff != "" { + t.Errorf("incorrect result: -got +want: %s", diff) + } + if diff := cmp.Diff(err, tc.wantErr, cmpopts.EquateErrors()); diff != "" { + t.Errorf("incorrect error: -got +want: %s", diff) + } + }) + }) + } +} + +func TestValueSet(t *testing.T) { + testcases := []struct { + description string + init map[string]js.Value + write myStruct + want myStruct + }{ + { + description: "write initial value", + write: myStruct{IntField: 100}, + want:myStruct{IntField: 100}, + }, + { + description: "overwrite previous value", + init: map[string]js.Value{ + testKeyPrefix + "." + valueKey: vert.ValueOf(&myStruct{StringField: "foo"}).JSValue(), + }, + write: myStruct{IntField: 42}, + want: myStruct{IntField: 42}, + }, + } + + for _, tc := range testcases { + t.Run(tc.description, func(t *testing.T) { + jut.DoSync(func(ctx jsutil.AsyncContext) { + store := NewRaw(st.NewMemArea()) + if err := store.Set(ctx, tc.init); err != nil { + t.Fatalf("Set failed: %v", err) + } + + vs := NewValue[myStruct](store, testKeyPrefixes) + + if err := vs.Set(ctx, tc.write); err != nil { + t.Fatalf("Value.Set failed: %v", err) + } + + got, err := vs.Get(ctx) + if err != nil { + t.Fatalf("Value.Get failed: %v", err) + } + if diff := cmp.Diff(got, tc.want); diff != "" { + t.Errorf("incorrect result: -got +want: %s", diff) + } + }) + }) + } +} + From d9f0862967ba2a6529458912cb57bbece33adc28 Mon Sep 17 00:00:00 2001 From: Rich Alimi Date: Sat, 10 Sep 2022 21:51:11 -0700 Subject: [PATCH 03/31] Track and update session state within the manager. Pull initialization into the manager itself. --- go/background/main.go | 9 ++---- go/keys/manager.go | 60 ++++++++++++++++++++++++++++++++++++---- go/storage/value.go | 2 +- go/storage/value_test.go | 9 +++--- 4 files changed, 63 insertions(+), 17 deletions(-) diff --git a/go/background/main.go b/go/background/main.go index d4ceeca8..c569707f 100644 --- a/go/background/main.go +++ b/go/background/main.go @@ -55,12 +55,9 @@ func (a *background) Name() string { } func (a *background) Init(ctx jsutil.AsyncContext, cleanup *jsutil.CleanupFuncs) error { - jsutil.Log("Cleaning up old data") - a.manager.CleanupOldData(ctx) - - jsutil.Log("Loading keys from session") - if err := a.manager.LoadFromSession(ctx); err != nil { - jsutil.LogError("failed to load keys into agent: %v", err) + jsutil.Log("Initializing manager") + if err := a.manager.Init(ctx); err != nil { + jsutil.LogError("failed to initialize manager: %v", err) } jsutil.LogDebug("Attaching event handlers") diff --git a/go/keys/manager.go b/go/keys/manager.go index b4f7fd01..43b55cea 100644 --- a/go/keys/manager.go +++ b/go/keys/manager.go @@ -153,6 +153,7 @@ func NewManager(agt agent.Agent, syncStorage, sessionStorage storage.Area) *Defa sessionStorage: sessionStorage, storedKeys: storage.NewTyped[storedKey](syncStorage, storedKeyPrefixes), sessionKeys: storage.NewTyped[sessionKey](sessionStorage, sessionKeyPrefixes), + lifecycleState: storage.NewValue[lifecycleState](sessionStorage, lifecycleStatePrefixes), } } @@ -163,6 +164,7 @@ type DefaultManager struct { sessionStorage storage.Area storedKeys *storage.Typed[storedKey] sessionKeys *storage.Typed[sessionKey] + lifecycleState *storage.Value[lifecycleState] } // storedKey is the raw object stored in persistent storage for a configured @@ -231,7 +233,17 @@ type sessionKey struct { PrivateKey string `js:"privateKey"` } +// lifecycleState is the raw object stored in persistent storage to keep track +// of the extension's lifecycle. +type lifecycleState struct { + sessionStarted bool `js:"sessionStarted"` +} + var ( + // lifecycleStatePrefixes are the prefixes used to store lifecycle + // state in storage. + lifecycleStatePrefixes = []string{"managerLifecycle"} + // storedKeyPrefix is the prefix for keys stored in persistent storage. storedKeyPrefixes = []string{"key"} // sessionKeyPrefix is the prefix for key material stored in-memory @@ -351,9 +363,42 @@ var ( errMarshalFailed = errors.New("key marshalling failed") ) -// CleanupOldData removes storage data that is no longer required. -func (m *DefaultManager) CleanupOldData(ctx jsutil.AsyncContext) { - jsutil.LogDebug("DefaultManager.CleanupOldData: Cleaning up stored keys") +// Init initializes the manager state from storage. +func (m *DefaultManager) Init(ctx jsutil.AsyncContext) error { + jsutil.Log("DefaultManager.Init: cleaning up old data") + m.cleanupOldData(ctx) + + lifecycle, err := m.lifecycleState.Get(ctx) + if err != nil { + return fmt.Errorf("failed to read current lifecycle state: %v", err) + } + + if !lifecycle.sessionStarted { + jsutil.Log("DefaultManager.Init: auto-loading keys") + if err := m.autoLoadKeys(ctx); err != nil { + // Continue on error. + jsutil.LogError("failed to auto-load keys: %v", err) + } + + // Startup successful; update lifecycle. + lifecycle.sessionStarted = true + if err := m.lifecycleState.Set(ctx, lifecycle); err != nil { + return fmt.Errorf("failed to update lifecycle state: %v", err) + } + } + + jsutil.Log("DefaultManager.Init: loading keys from session") + if err := m.loadFromSession(ctx); err != nil { + // Continue on error. + jsutil.LogError("failed to load keys into agent: %v", err) + } + + return nil +} + +// cleanupOldData removes storage data that is no longer required. +func (m *DefaultManager) cleanupOldData(ctx jsutil.AsyncContext) { + jsutil.LogDebug("DefaultManager.cleanupOldData: Cleaning up stored keys") areas := []storage.Area{ m.syncStorage, @@ -372,8 +417,13 @@ func (m *DefaultManager) CleanupOldData(ctx jsutil.AsyncContext) { } } -// LoadFromSession loads all keys for the current session into the agent. -func (m *DefaultManager) LoadFromSession(ctx jsutil.AsyncContext) error { +// autoLoadKeys loads all keys that were configured to auto-load. +func (m *DefaultManager) autoLoadKeys(ctx jsutil.AsyncContext) error { + +} + +// loadFromSession loads all keys for the current session into the agent. +func (m *DefaultManager) loadFromSession(ctx jsutil.AsyncContext) error { // Read session keys. We'll load these into the agent. jsutil.LogDebug("DefaultManager.LoadFromSession: Read session keys") sessionKeys, err := m.sessionKeys.ReadAll(ctx) diff --git a/go/storage/value.go b/go/storage/value.go index b0c9a066..f2b476c7 100644 --- a/go/storage/value.go +++ b/go/storage/value.go @@ -17,8 +17,8 @@ package storage import ( - "syscall/js" "errors" + "syscall/js" "github.com/google/chrome-ssh-agent/go/jsutil" "github.com/norunners/vert" diff --git a/go/storage/value_test.go b/go/storage/value_test.go index c0964e92..9986e2a6 100644 --- a/go/storage/value_test.go +++ b/go/storage/value_test.go @@ -35,7 +35,7 @@ func TestValueGet(t *testing.T) { }{ { description: "no value present", - want: myStruct{}, + want: myStruct{}, }, { description: "parse values", @@ -84,8 +84,8 @@ func TestValueSet(t *testing.T) { }{ { description: "write initial value", - write: myStruct{IntField: 100}, - want:myStruct{IntField: 100}, + write: myStruct{IntField: 100}, + want: myStruct{IntField: 100}, }, { description: "overwrite previous value", @@ -93,7 +93,7 @@ func TestValueSet(t *testing.T) { testKeyPrefix + "." + valueKey: vert.ValueOf(&myStruct{StringField: "foo"}).JSValue(), }, write: myStruct{IntField: 42}, - want: myStruct{IntField: 42}, + want: myStruct{IntField: 42}, }, } @@ -122,4 +122,3 @@ func TestValueSet(t *testing.T) { }) } } - From 682fae3585692ddff00c327999b6baa01556c4ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Sep 2022 13:29:00 -0700 Subject: [PATCH 04/31] Bump @bazel/typescript from 5.5.3 to 5.5.4 (#47) Bumps [@bazel/typescript](https://github.com/bazelbuild/rules_nodejs/tree/HEAD/packages/typescript) from 5.5.3 to 5.5.4. - [Release notes](https://github.com/bazelbuild/rules_nodejs/releases) - [Changelog](https://github.com/bazelbuild/rules_nodejs/blob/stable/CHANGELOG.md) - [Commits](https://github.com/bazelbuild/rules_nodejs/commits/5.5.4/packages/typescript) --- updated-dependencies: - dependency-name: "@bazel/typescript" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/package-lock.json b/package-lock.json index 945cfb89..55886499 100644 --- a/package-lock.json +++ b/package-lock.json @@ -26,13 +26,13 @@ "hasInstallScript": true }, "node_modules/@bazel/typescript": { - "version": "5.5.3", - "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.5.3.tgz", - "integrity": "sha512-DGlzz2RmzRrNWhoL1ynr62qsTk5cUzjIJj2MreeQVoYHQZfB3FCCu/TGtDS5xyEbfWhsn7Zwo5qpOxvdYiPWng==", + "version": "5.5.4", + "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.5.4.tgz", + "integrity": "sha512-UyLcon6kiUMcr1PE/Sdyk9D9QEE5WaHPWI6cmaC8kQH0D64fWUWl9BiVwuox9N3DklfaNn9hlK/7SJ6p00gPQw==", "dev": true, "hasInstallScript": true, "dependencies": { - "@bazel/worker": "5.5.3", + "@bazel/worker": "5.5.4", "semver": "5.6.0", "source-map-support": "0.5.9", "tsutils": "3.21.0" @@ -45,9 +45,9 @@ } }, "node_modules/@bazel/worker": { - "version": "5.5.3", - "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.5.3.tgz", - "integrity": "sha512-Wm0istBBko5w2ddDwCK4rvDQrWfeFGaWdG3iTNkYAHKfQrkgYeMucMoAbFB6LZ87KZKuBEN9KSDq+fi8MXtGlw==", + "version": "5.5.4", + "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.5.4.tgz", + "integrity": "sha512-d6jOWaR44c1WEDpgGdB0qJyaacwm7HF5yrM+15iirqxnSi2Uuk9FBGJ+O3TniSKZsRzgaA/4if2tkRikFnO9Ng==", "dev": true, "dependencies": { "google-protobuf": "^3.6.1" @@ -795,21 +795,21 @@ "dev": true }, "@bazel/typescript": { - "version": "5.5.3", - "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.5.3.tgz", - "integrity": "sha512-DGlzz2RmzRrNWhoL1ynr62qsTk5cUzjIJj2MreeQVoYHQZfB3FCCu/TGtDS5xyEbfWhsn7Zwo5qpOxvdYiPWng==", + "version": "5.5.4", + "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.5.4.tgz", + "integrity": "sha512-UyLcon6kiUMcr1PE/Sdyk9D9QEE5WaHPWI6cmaC8kQH0D64fWUWl9BiVwuox9N3DklfaNn9hlK/7SJ6p00gPQw==", "dev": true, "requires": { - "@bazel/worker": "5.5.3", + "@bazel/worker": "5.5.4", "semver": "5.6.0", "source-map-support": "0.5.9", "tsutils": "3.21.0" } }, "@bazel/worker": { - "version": "5.5.3", - "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.5.3.tgz", - "integrity": "sha512-Wm0istBBko5w2ddDwCK4rvDQrWfeFGaWdG3iTNkYAHKfQrkgYeMucMoAbFB6LZ87KZKuBEN9KSDq+fi8MXtGlw==", + "version": "5.5.4", + "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.5.4.tgz", + "integrity": "sha512-d6jOWaR44c1WEDpgGdB0qJyaacwm7HF5yrM+15iirqxnSi2Uuk9FBGJ+O3TniSKZsRzgaA/4if2tkRikFnO9Ng==", "dev": true, "requires": { "google-protobuf": "^3.6.1" From 26fb79a0fcf17d3768d2def468166438060da14d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Sep 2022 12:47:07 -0700 Subject: [PATCH 05/31] Bump @bazel/esbuild from 5.5.3 to 5.5.4 (#48) Bumps [@bazel/esbuild](https://github.com/bazelbuild/rules_nodejs/tree/HEAD/packages/esbuild) from 5.5.3 to 5.5.4. - [Release notes](https://github.com/bazelbuild/rules_nodejs/releases) - [Changelog](https://github.com/bazelbuild/rules_nodejs/blob/stable/CHANGELOG.md) - [Commits](https://github.com/bazelbuild/rules_nodejs/commits/5.5.4/packages/esbuild) --- updated-dependencies: - dependency-name: "@bazel/esbuild" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 55886499..62cf7aad 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19,9 +19,9 @@ } }, "node_modules/@bazel/esbuild": { - "version": "5.5.3", - "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.5.3.tgz", - "integrity": "sha512-A+mVZfJsnTYc4dvrmGy/Sxu4pt2jvJFRFONP+ngve4qont3K1xK3LF3C6uOEFk4lMNoykUptr7/bvhGRr/j9Vw==", + "version": "5.5.4", + "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.5.4.tgz", + "integrity": "sha512-C9R5hTgYmP/GU7yNzgOus6SaS7tyS5J5ptWruM3ERKaw5CIEPTi0hlBLmPpM9Wo8xIDNlF0BhGvM59T7bKs2iQ==", "dev": true, "hasInstallScript": true }, @@ -789,9 +789,9 @@ }, "dependencies": { "@bazel/esbuild": { - "version": "5.5.3", - "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.5.3.tgz", - "integrity": "sha512-A+mVZfJsnTYc4dvrmGy/Sxu4pt2jvJFRFONP+ngve4qont3K1xK3LF3C6uOEFk4lMNoykUptr7/bvhGRr/j9Vw==", + "version": "5.5.4", + "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.5.4.tgz", + "integrity": "sha512-C9R5hTgYmP/GU7yNzgOus6SaS7tyS5J5ptWruM3ERKaw5CIEPTi0hlBLmPpM9Wo8xIDNlF0BhGvM59T7bKs2iQ==", "dev": true }, "@bazel/typescript": { From f333b65b6bdd85dada7bbe5646ae93765af5b842 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Sep 2022 12:55:35 -0700 Subject: [PATCH 06/31] Bump @types/chrome from 0.0.196 to 0.0.197 (#49) Bumps [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) from 0.0.196 to 0.0.197. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chrome) --- updated-dependencies: - dependency-name: "@types/chrome" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 62cf7aad..3bf9e754 100644 --- a/package-lock.json +++ b/package-lock.json @@ -62,9 +62,9 @@ } }, "node_modules/@types/chrome": { - "version": "0.0.196", - "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.196.tgz", - "integrity": "sha512-LAjGIQYC0wyiYu6lVT03dBrHBfYTMsM8EmNfQ+UdZipGZe8OUiir6weoa9oQoBw3T3RLzBCp9m904T+rFtpPAg==", + "version": "0.0.197", + "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.197.tgz", + "integrity": "sha512-m1NfS5bOjaypyqQfaX6CxmJodZVcvj5+Mt/K94EBHkflYjPNmXHAzbxfifdLMa0YM3PDyOxohoTS5ug/e6p5jA==", "dev": true, "dependencies": { "@types/filesystem": "*", @@ -821,9 +821,9 @@ "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" }, "@types/chrome": { - "version": "0.0.196", - "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.196.tgz", - "integrity": "sha512-LAjGIQYC0wyiYu6lVT03dBrHBfYTMsM8EmNfQ+UdZipGZe8OUiir6weoa9oQoBw3T3RLzBCp9m904T+rFtpPAg==", + "version": "0.0.197", + "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.197.tgz", + "integrity": "sha512-m1NfS5bOjaypyqQfaX6CxmJodZVcvj5+Mt/K94EBHkflYjPNmXHAzbxfifdLMa0YM3PDyOxohoTS5ug/e6p5jA==", "dev": true, "requires": { "@types/filesystem": "*", From 4ad3aaae5015b6a4894f7ce8183e04ac38461e6c Mon Sep 17 00:00:00 2001 From: Rich Alimi Date: Thu, 22 Sep 2022 22:21:35 -0700 Subject: [PATCH 07/31] Create pull requests corresponding to branches (#50) --- .github/workflows/pull-request-on-branch.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/pull-request-on-branch.yml diff --git a/.github/workflows/pull-request-on-branch.yml b/.github/workflows/pull-request-on-branch.yml new file mode 100644 index 00000000..3cab1e79 --- /dev/null +++ b/.github/workflows/pull-request-on-branch.yml @@ -0,0 +1,19 @@ +name: Create Pull Request for Branch + +on: + # Push to non-master branch + push: + branches-ignore: master + +jobs: + pull-request: + runs-on: ubuntu-latest + permissions: + pull-requests: write + steps: + - uses: actions/checkout@v3 + - uses: devops-infra/action-pull-request@v0.5.0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + label: automatic + draft: true From 35fb495ae7a3621c9d5a2c6f4472bec01130402b Mon Sep 17 00:00:00 2001 From: Rich Alimi Date: Thu, 22 Sep 2022 22:45:44 -0700 Subject: [PATCH 08/31] Remove automatic pull requests (#52) * Fetch all branches to enable diffs. Streamline titles. * Rename for consistency * Remove automatic pull requests --- .github/workflows/pull-request-on-branch.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/pull-request-on-branch.yml diff --git a/.github/workflows/pull-request-on-branch.yml b/.github/workflows/pull-request-on-branch.yml deleted file mode 100644 index 3cab1e79..00000000 --- a/.github/workflows/pull-request-on-branch.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Create Pull Request for Branch - -on: - # Push to non-master branch - push: - branches-ignore: master - -jobs: - pull-request: - runs-on: ubuntu-latest - permissions: - pull-requests: write - steps: - - uses: actions/checkout@v3 - - uses: devops-infra/action-pull-request@v0.5.0 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - label: automatic - draft: true From e1e48ec4bf8f29616cb7031fdd191a853f00894d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Sep 2022 20:39:26 -0700 Subject: [PATCH 09/31] Bump @bazel/typescript from 5.5.4 to 5.6.0 (#53) Bumps [@bazel/typescript](https://github.com/bazelbuild/rules_nodejs/tree/HEAD/packages/typescript) from 5.5.4 to 5.6.0. - [Release notes](https://github.com/bazelbuild/rules_nodejs/releases) - [Changelog](https://github.com/bazelbuild/rules_nodejs/blob/stable/CHANGELOG.md) - [Commits](https://github.com/bazelbuild/rules_nodejs/commits/5.6.0/packages/typescript) --- updated-dependencies: - dependency-name: "@bazel/typescript" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3bf9e754..94acc5ca 100644 --- a/package-lock.json +++ b/package-lock.json @@ -26,13 +26,13 @@ "hasInstallScript": true }, "node_modules/@bazel/typescript": { - "version": "5.5.4", - "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.5.4.tgz", - "integrity": "sha512-UyLcon6kiUMcr1PE/Sdyk9D9QEE5WaHPWI6cmaC8kQH0D64fWUWl9BiVwuox9N3DklfaNn9hlK/7SJ6p00gPQw==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.6.0.tgz", + "integrity": "sha512-XIi9whWnG3ky3aWz2+w1GLbjKjVdMttsEHi7kqlE2H6KL6Ujq+bvYPUQyNtDVmJOwY4vUJ2TtdebDzfP7H+r2w==", "dev": true, "hasInstallScript": true, "dependencies": { - "@bazel/worker": "5.5.4", + "@bazel/worker": "5.6.0", "semver": "5.6.0", "source-map-support": "0.5.9", "tsutils": "3.21.0" @@ -45,9 +45,9 @@ } }, "node_modules/@bazel/worker": { - "version": "5.5.4", - "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.5.4.tgz", - "integrity": "sha512-d6jOWaR44c1WEDpgGdB0qJyaacwm7HF5yrM+15iirqxnSi2Uuk9FBGJ+O3TniSKZsRzgaA/4if2tkRikFnO9Ng==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.6.0.tgz", + "integrity": "sha512-3U//HQSeTu6kp6e1k/ncPodTj2IZfJCTNH7dL5VzBzXOodyWivudDMCss3X+LRL8KfjiPqPukysRvwzK/INxhg==", "dev": true, "dependencies": { "google-protobuf": "^3.6.1" @@ -795,21 +795,21 @@ "dev": true }, "@bazel/typescript": { - "version": "5.5.4", - "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.5.4.tgz", - "integrity": "sha512-UyLcon6kiUMcr1PE/Sdyk9D9QEE5WaHPWI6cmaC8kQH0D64fWUWl9BiVwuox9N3DklfaNn9hlK/7SJ6p00gPQw==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.6.0.tgz", + "integrity": "sha512-XIi9whWnG3ky3aWz2+w1GLbjKjVdMttsEHi7kqlE2H6KL6Ujq+bvYPUQyNtDVmJOwY4vUJ2TtdebDzfP7H+r2w==", "dev": true, "requires": { - "@bazel/worker": "5.5.4", + "@bazel/worker": "5.6.0", "semver": "5.6.0", "source-map-support": "0.5.9", "tsutils": "3.21.0" } }, "@bazel/worker": { - "version": "5.5.4", - "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.5.4.tgz", - "integrity": "sha512-d6jOWaR44c1WEDpgGdB0qJyaacwm7HF5yrM+15iirqxnSi2Uuk9FBGJ+O3TniSKZsRzgaA/4if2tkRikFnO9Ng==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.6.0.tgz", + "integrity": "sha512-3U//HQSeTu6kp6e1k/ncPodTj2IZfJCTNH7dL5VzBzXOodyWivudDMCss3X+LRL8KfjiPqPukysRvwzK/INxhg==", "dev": true, "requires": { "google-protobuf": "^3.6.1" From cc48fd079688d92d394654a7b9fcb9095b7df9b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 28 Sep 2022 15:31:01 -0700 Subject: [PATCH 10/31] Bump typescript from 4.8.3 to 4.8.4 (#55) Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.8.3 to 4.8.4. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](https://github.com/Microsoft/TypeScript/compare/v4.8.3...v4.8.4) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 94acc5ca..13d55361 100644 --- a/package-lock.json +++ b/package-lock.json @@ -650,9 +650,9 @@ } }, "node_modules/typescript": { - "version": "4.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz", - "integrity": "sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==", + "version": "4.8.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz", + "integrity": "sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==", "dev": true, "bin": { "tsc": "bin/tsc", @@ -1273,9 +1273,9 @@ } }, "typescript": { - "version": "4.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz", - "integrity": "sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==", + "version": "4.8.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz", + "integrity": "sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==", "dev": true }, "universalify": { From 7b1a775bb6acc9627b812e03b146fac219ef121c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Oct 2022 23:21:26 -0700 Subject: [PATCH 11/31] Bump jsdom from 20.0.0 to 20.0.1 (#56) Bumps [jsdom](https://github.com/jsdom/jsdom) from 20.0.0 to 20.0.1. - [Release notes](https://github.com/jsdom/jsdom/releases) - [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md) - [Commits](https://github.com/jsdom/jsdom/compare/20.0.0...20.0.1) --- updated-dependencies: - dependency-name: jsdom dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 142 ++++++++++++++++------------------------------ 1 file changed, 48 insertions(+), 94 deletions(-) diff --git a/package-lock.json b/package-lock.json index 13d55361..c9692498 100644 --- a/package-lock.json +++ b/package-lock.json @@ -114,29 +114,18 @@ } }, "node_modules/acorn-globals": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", - "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", "dependencies": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1" - } - }, - "node_modules/acorn-globals/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" + "acorn": "^8.1.0", + "acorn-walk": "^8.0.2" } }, "node_modules/acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", "engines": { "node": ">=0.4.0" } @@ -157,11 +146,6 @@ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" }, - "node_modules/browser-process-hrtime": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", - "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" - }, "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", @@ -230,9 +214,9 @@ } }, "node_modules/decimal.js": { - "version": "10.4.0", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.0.tgz", - "integrity": "sha512-Nv6ENEzyPQ6AItkGwLE2PGKinZZ9g59vSh2BeH6NqPu0OTKZ5ruJsVqh/orbAnqXc9pBbgXAIrc2EyaCj8NpGg==" + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.1.tgz", + "integrity": "sha512-F29o+vci4DodHYT9UrR5IEbfBw9pE5eSapIJdTqXK5+6hq+t8VRxwQyKlW2i+KDKFkkJQRvFyI/QXD83h8LyQw==" }, "node_modules/deep-is": { "version": "0.1.4", @@ -395,17 +379,17 @@ "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" }, "node_modules/jsdom": { - "version": "20.0.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.0.tgz", - "integrity": "sha512-x4a6CKCgx00uCmP+QakBDFXwjAJ69IkkIWHmtmjd3wvXPcdOS44hfX2vqkOQrVrq8l9DhNNADZRXaCEWvgXtVA==", + "version": "20.0.1", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.1.tgz", + "integrity": "sha512-pksjj7Rqoa+wdpkKcLzQRHhJCEE42qQhl/xLMUKHgoSejaKOdaXEAnqs6uDNwMl/fciHTzKeR8Wm8cw7N+g98A==", "dependencies": { "abab": "^2.0.6", - "acorn": "^8.7.1", - "acorn-globals": "^6.0.0", + "acorn": "^8.8.0", + "acorn-globals": "^7.0.0", "cssom": "^0.5.0", "cssstyle": "^2.3.0", "data-urls": "^3.0.2", - "decimal.js": "^10.3.1", + "decimal.js": "^10.4.1", "domexception": "^4.0.0", "escodegen": "^2.0.0", "form-data": "^4.0.0", @@ -413,18 +397,17 @@ "http-proxy-agent": "^5.0.0", "https-proxy-agent": "^5.0.1", "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.0", - "parse5": "^7.0.0", + "nwsapi": "^2.2.2", + "parse5": "^7.1.1", "saxes": "^6.0.0", "symbol-tree": "^3.2.4", - "tough-cookie": "^4.0.0", - "w3c-hr-time": "^1.0.2", + "tough-cookie": "^4.1.2", "w3c-xmlserializer": "^3.0.0", "webidl-conversions": "^7.0.0", "whatwg-encoding": "^2.0.0", "whatwg-mimetype": "^3.0.0", "whatwg-url": "^11.0.0", - "ws": "^8.8.0", + "ws": "^8.9.0", "xml-name-validator": "^4.0.0" }, "engines": { @@ -679,14 +662,6 @@ "requires-port": "^1.0.0" } }, - "node_modules/w3c-hr-time": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", - "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", - "dependencies": { - "browser-process-hrtime": "^1.0.0" - } - }, "node_modules/w3c-xmlserializer": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-3.0.0.tgz", @@ -754,9 +729,9 @@ } }, "node_modules/ws": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz", - "integrity": "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==", + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.9.0.tgz", + "integrity": "sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg==", "engines": { "node": ">=10.0.0" }, @@ -867,25 +842,18 @@ "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==" }, "acorn-globals": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", - "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", "requires": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1" - }, - "dependencies": { - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" - } + "acorn": "^8.1.0", + "acorn-walk": "^8.0.2" } }, "acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==" }, "agent-base": { "version": "6.0.2", @@ -900,11 +868,6 @@ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" }, - "browser-process-hrtime": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", - "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" - }, "buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", @@ -958,9 +921,9 @@ } }, "decimal.js": { - "version": "10.4.0", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.0.tgz", - "integrity": "sha512-Nv6ENEzyPQ6AItkGwLE2PGKinZZ9g59vSh2BeH6NqPu0OTKZ5ruJsVqh/orbAnqXc9pBbgXAIrc2EyaCj8NpGg==" + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.1.tgz", + "integrity": "sha512-F29o+vci4DodHYT9UrR5IEbfBw9pE5eSapIJdTqXK5+6hq+t8VRxwQyKlW2i+KDKFkkJQRvFyI/QXD83h8LyQw==" }, "deep-is": { "version": "0.1.4", @@ -1074,17 +1037,17 @@ "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" }, "jsdom": { - "version": "20.0.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.0.tgz", - "integrity": "sha512-x4a6CKCgx00uCmP+QakBDFXwjAJ69IkkIWHmtmjd3wvXPcdOS44hfX2vqkOQrVrq8l9DhNNADZRXaCEWvgXtVA==", + "version": "20.0.1", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.1.tgz", + "integrity": "sha512-pksjj7Rqoa+wdpkKcLzQRHhJCEE42qQhl/xLMUKHgoSejaKOdaXEAnqs6uDNwMl/fciHTzKeR8Wm8cw7N+g98A==", "requires": { "abab": "^2.0.6", - "acorn": "^8.7.1", - "acorn-globals": "^6.0.0", + "acorn": "^8.8.0", + "acorn-globals": "^7.0.0", "cssom": "^0.5.0", "cssstyle": "^2.3.0", "data-urls": "^3.0.2", - "decimal.js": "^10.3.1", + "decimal.js": "^10.4.1", "domexception": "^4.0.0", "escodegen": "^2.0.0", "form-data": "^4.0.0", @@ -1092,18 +1055,17 @@ "http-proxy-agent": "^5.0.0", "https-proxy-agent": "^5.0.1", "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.0", - "parse5": "^7.0.0", + "nwsapi": "^2.2.2", + "parse5": "^7.1.1", "saxes": "^6.0.0", "symbol-tree": "^3.2.4", - "tough-cookie": "^4.0.0", - "w3c-hr-time": "^1.0.2", + "tough-cookie": "^4.1.2", "w3c-xmlserializer": "^3.0.0", "webidl-conversions": "^7.0.0", "whatwg-encoding": "^2.0.0", "whatwg-mimetype": "^3.0.0", "whatwg-url": "^11.0.0", - "ws": "^8.8.0", + "ws": "^8.9.0", "xml-name-validator": "^4.0.0" } }, @@ -1292,14 +1254,6 @@ "requires-port": "^1.0.0" } }, - "w3c-hr-time": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", - "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", - "requires": { - "browser-process-hrtime": "^1.0.0" - } - }, "w3c-xmlserializer": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-3.0.0.tgz", @@ -1346,9 +1300,9 @@ "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" }, "ws": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz", - "integrity": "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==", + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.9.0.tgz", + "integrity": "sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg==", "requires": {} }, "xml-name-validator": { From 550767d8de7990579f1fef3241db2aecf845eb09 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Oct 2022 20:54:23 -0700 Subject: [PATCH 12/31] Bump @bazel/esbuild from 5.5.4 to 5.7.0 (#57) Bumps [@bazel/esbuild](https://github.com/bazelbuild/rules_nodejs/tree/HEAD/packages/esbuild) from 5.5.4 to 5.7.0. - [Release notes](https://github.com/bazelbuild/rules_nodejs/releases) - [Changelog](https://github.com/bazelbuild/rules_nodejs/blob/stable/CHANGELOG.md) - [Commits](https://github.com/bazelbuild/rules_nodejs/commits/5.7.0/packages/esbuild) --- updated-dependencies: - dependency-name: "@bazel/esbuild" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index c9692498..a672b278 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19,9 +19,9 @@ } }, "node_modules/@bazel/esbuild": { - "version": "5.5.4", - "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.5.4.tgz", - "integrity": "sha512-C9R5hTgYmP/GU7yNzgOus6SaS7tyS5J5ptWruM3ERKaw5CIEPTi0hlBLmPpM9Wo8xIDNlF0BhGvM59T7bKs2iQ==", + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.7.0.tgz", + "integrity": "sha512-5QQVa9gZ7sOVA7b9HdSXLvDuZ8crqubGJkEsNUjSh1pSzHuyMIqKYbYaEhCFrhfk4M/XoTy/BkIER0bJSZYjMw==", "dev": true, "hasInstallScript": true }, @@ -764,9 +764,9 @@ }, "dependencies": { "@bazel/esbuild": { - "version": "5.5.4", - "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.5.4.tgz", - "integrity": "sha512-C9R5hTgYmP/GU7yNzgOus6SaS7tyS5J5ptWruM3ERKaw5CIEPTi0hlBLmPpM9Wo8xIDNlF0BhGvM59T7bKs2iQ==", + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.7.0.tgz", + "integrity": "sha512-5QQVa9gZ7sOVA7b9HdSXLvDuZ8crqubGJkEsNUjSh1pSzHuyMIqKYbYaEhCFrhfk4M/XoTy/BkIER0bJSZYjMw==", "dev": true }, "@bazel/typescript": { From e10d9a3c9af47c7a0cb9f18e75003800158674b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Oct 2022 21:02:51 -0700 Subject: [PATCH 13/31] Bump @bazel/typescript from 5.6.0 to 5.7.0 (#58) Bumps [@bazel/typescript](https://github.com/bazelbuild/rules_nodejs/tree/HEAD/packages/typescript) from 5.6.0 to 5.7.0. - [Release notes](https://github.com/bazelbuild/rules_nodejs/releases) - [Changelog](https://github.com/bazelbuild/rules_nodejs/blob/stable/CHANGELOG.md) - [Commits](https://github.com/bazelbuild/rules_nodejs/commits/5.7.0/packages/typescript) --- updated-dependencies: - dependency-name: "@bazel/typescript" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/package-lock.json b/package-lock.json index a672b278..c7c4aebe 100644 --- a/package-lock.json +++ b/package-lock.json @@ -26,13 +26,13 @@ "hasInstallScript": true }, "node_modules/@bazel/typescript": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.6.0.tgz", - "integrity": "sha512-XIi9whWnG3ky3aWz2+w1GLbjKjVdMttsEHi7kqlE2H6KL6Ujq+bvYPUQyNtDVmJOwY4vUJ2TtdebDzfP7H+r2w==", + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.7.0.tgz", + "integrity": "sha512-5c06vi2rQqd75GieqYGsNVon3tnkvbjMlVLJuwJ5/VtC9uOXKlCwrqxV8tbx789PTTtACNYzwKJTVW++58tgDA==", "dev": true, "hasInstallScript": true, "dependencies": { - "@bazel/worker": "5.6.0", + "@bazel/worker": "5.7.0", "semver": "5.6.0", "source-map-support": "0.5.9", "tsutils": "3.21.0" @@ -45,9 +45,9 @@ } }, "node_modules/@bazel/worker": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.6.0.tgz", - "integrity": "sha512-3U//HQSeTu6kp6e1k/ncPodTj2IZfJCTNH7dL5VzBzXOodyWivudDMCss3X+LRL8KfjiPqPukysRvwzK/INxhg==", + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.7.0.tgz", + "integrity": "sha512-VqTG+0gsgXM07q+HiQcSAggNnAzjLei8lzlJQ+mey12KGI4AbNJ1vxlk2pnw9BZdckfe2rRzwkF44B5SNqIgSQ==", "dev": true, "dependencies": { "google-protobuf": "^3.6.1" @@ -321,9 +321,9 @@ } }, "node_modules/google-protobuf": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.21.0.tgz", - "integrity": "sha512-byR7MBTK4tZ5PZEb+u5ZTzpt4SfrTxv5682MjPlHN16XeqgZE2/8HOIWeiXe8JKnT9OVbtBGhbq8mtvkK8cd5g==", + "version": "3.21.1", + "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.21.1.tgz", + "integrity": "sha512-iiQnqsR7nzdYfJjo2yOpJJ2bsAaOvV/85HjDx/sxcOJcNMgyj3iK00HsbZbhKS+EixWdu9fPn7quaBvb4IQHtw==", "dev": true }, "node_modules/html-encoding-sniffer": { @@ -770,21 +770,21 @@ "dev": true }, "@bazel/typescript": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.6.0.tgz", - "integrity": "sha512-XIi9whWnG3ky3aWz2+w1GLbjKjVdMttsEHi7kqlE2H6KL6Ujq+bvYPUQyNtDVmJOwY4vUJ2TtdebDzfP7H+r2w==", + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.7.0.tgz", + "integrity": "sha512-5c06vi2rQqd75GieqYGsNVon3tnkvbjMlVLJuwJ5/VtC9uOXKlCwrqxV8tbx789PTTtACNYzwKJTVW++58tgDA==", "dev": true, "requires": { - "@bazel/worker": "5.6.0", + "@bazel/worker": "5.7.0", "semver": "5.6.0", "source-map-support": "0.5.9", "tsutils": "3.21.0" } }, "@bazel/worker": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.6.0.tgz", - "integrity": "sha512-3U//HQSeTu6kp6e1k/ncPodTj2IZfJCTNH7dL5VzBzXOodyWivudDMCss3X+LRL8KfjiPqPukysRvwzK/INxhg==", + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.7.0.tgz", + "integrity": "sha512-VqTG+0gsgXM07q+HiQcSAggNnAzjLei8lzlJQ+mey12KGI4AbNJ1vxlk2pnw9BZdckfe2rRzwkF44B5SNqIgSQ==", "dev": true, "requires": { "google-protobuf": "^3.6.1" @@ -991,9 +991,9 @@ } }, "google-protobuf": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.21.0.tgz", - "integrity": "sha512-byR7MBTK4tZ5PZEb+u5ZTzpt4SfrTxv5682MjPlHN16XeqgZE2/8HOIWeiXe8JKnT9OVbtBGhbq8mtvkK8cd5g==", + "version": "3.21.1", + "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.21.1.tgz", + "integrity": "sha512-iiQnqsR7nzdYfJjo2yOpJJ2bsAaOvV/85HjDx/sxcOJcNMgyj3iK00HsbZbhKS+EixWdu9fPn7quaBvb4IQHtw==", "dev": true }, "html-encoding-sniffer": { From de05ebbd283fd91faef6876c4ccee13ba2022ba9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Oct 2022 23:13:56 -0700 Subject: [PATCH 14/31] Bump @types/chrome from 0.0.197 to 0.0.198 (#59) Bumps [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) from 0.0.197 to 0.0.198. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chrome) --- updated-dependencies: - dependency-name: "@types/chrome" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index c7c4aebe..9fd16d49 100644 --- a/package-lock.json +++ b/package-lock.json @@ -62,9 +62,9 @@ } }, "node_modules/@types/chrome": { - "version": "0.0.197", - "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.197.tgz", - "integrity": "sha512-m1NfS5bOjaypyqQfaX6CxmJodZVcvj5+Mt/K94EBHkflYjPNmXHAzbxfifdLMa0YM3PDyOxohoTS5ug/e6p5jA==", + "version": "0.0.198", + "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.198.tgz", + "integrity": "sha512-zLn6JZXwSOOY0pw+dkIxItxvjsQThDkqaFnsnmr412Wa0MqesymfdTQ/0d30J/0wiFp3TYw0i63hzGGy0W7Paw==", "dev": true, "dependencies": { "@types/filesystem": "*", @@ -796,9 +796,9 @@ "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" }, "@types/chrome": { - "version": "0.0.197", - "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.197.tgz", - "integrity": "sha512-m1NfS5bOjaypyqQfaX6CxmJodZVcvj5+Mt/K94EBHkflYjPNmXHAzbxfifdLMa0YM3PDyOxohoTS5ug/e6p5jA==", + "version": "0.0.198", + "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.198.tgz", + "integrity": "sha512-zLn6JZXwSOOY0pw+dkIxItxvjsQThDkqaFnsnmr412Wa0MqesymfdTQ/0d30J/0wiFp3TYw0i63hzGGy0W7Paw==", "dev": true, "requires": { "@types/filesystem": "*", From 9fa6a0fd69d122959c858b710caac6d0e77431e7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Oct 2022 19:55:06 -0700 Subject: [PATCH 15/31] Bump @types/chrome from 0.0.198 to 0.0.199 (#60) Bumps [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) from 0.0.198 to 0.0.199. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chrome) --- updated-dependencies: - dependency-name: "@types/chrome" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9fd16d49..e9e6a3e5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -62,9 +62,9 @@ } }, "node_modules/@types/chrome": { - "version": "0.0.198", - "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.198.tgz", - "integrity": "sha512-zLn6JZXwSOOY0pw+dkIxItxvjsQThDkqaFnsnmr412Wa0MqesymfdTQ/0d30J/0wiFp3TYw0i63hzGGy0W7Paw==", + "version": "0.0.199", + "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.199.tgz", + "integrity": "sha512-BDuKiS8iZONsvTFSjbJlmHAwkYpkcWtG7Z7ESDJ/vf0QlcaXX6q4Xzi7euDNjIS4ZMA4kSODPGBHGVdC2lAHzw==", "dev": true, "dependencies": { "@types/filesystem": "*", @@ -796,9 +796,9 @@ "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" }, "@types/chrome": { - "version": "0.0.198", - "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.198.tgz", - "integrity": "sha512-zLn6JZXwSOOY0pw+dkIxItxvjsQThDkqaFnsnmr412Wa0MqesymfdTQ/0d30J/0wiFp3TYw0i63hzGGy0W7Paw==", + "version": "0.0.199", + "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.199.tgz", + "integrity": "sha512-BDuKiS8iZONsvTFSjbJlmHAwkYpkcWtG7Z7ESDJ/vf0QlcaXX6q4Xzi7euDNjIS4ZMA4kSODPGBHGVdC2lAHzw==", "dev": true, "requires": { "@types/filesystem": "*", From b74da7cac94ff9af1e37ae5261662ab8c2eb8ca9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Oct 2022 19:10:15 -0700 Subject: [PATCH 16/31] Bump @types/chrome from 0.0.199 to 0.0.200 (#63) Bumps [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) from 0.0.199 to 0.0.200. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chrome) --- updated-dependencies: - dependency-name: "@types/chrome" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index e9e6a3e5..0d071c00 100644 --- a/package-lock.json +++ b/package-lock.json @@ -62,9 +62,9 @@ } }, "node_modules/@types/chrome": { - "version": "0.0.199", - "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.199.tgz", - "integrity": "sha512-BDuKiS8iZONsvTFSjbJlmHAwkYpkcWtG7Z7ESDJ/vf0QlcaXX6q4Xzi7euDNjIS4ZMA4kSODPGBHGVdC2lAHzw==", + "version": "0.0.200", + "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.200.tgz", + "integrity": "sha512-oNT2/KHgZECTzj4oavLc20r3D2yFufLwGNaLFAN8YxYyNVJGenX3l3oGBynhoT/Azm3eAfyDynrdca6jB7CNzw==", "dev": true, "dependencies": { "@types/filesystem": "*", @@ -796,9 +796,9 @@ "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" }, "@types/chrome": { - "version": "0.0.199", - "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.199.tgz", - "integrity": "sha512-BDuKiS8iZONsvTFSjbJlmHAwkYpkcWtG7Z7ESDJ/vf0QlcaXX6q4Xzi7euDNjIS4ZMA4kSODPGBHGVdC2lAHzw==", + "version": "0.0.200", + "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.200.tgz", + "integrity": "sha512-oNT2/KHgZECTzj4oavLc20r3D2yFufLwGNaLFAN8YxYyNVJGenX3l3oGBynhoT/Azm3eAfyDynrdca6jB7CNzw==", "dev": true, "requires": { "@types/filesystem": "*", From f54287f433023914934b63206626d8168679335e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Oct 2022 19:23:14 -0700 Subject: [PATCH 17/31] Bump @bazel/esbuild from 5.7.0 to 5.7.1 (#62) Bumps [@bazel/esbuild](https://github.com/bazelbuild/rules_nodejs/tree/HEAD/packages/esbuild) from 5.7.0 to 5.7.1. - [Release notes](https://github.com/bazelbuild/rules_nodejs/releases) - [Changelog](https://github.com/bazelbuild/rules_nodejs/blob/stable/CHANGELOG.md) - [Commits](https://github.com/bazelbuild/rules_nodejs/commits/5.7.1/packages/esbuild) --- updated-dependencies: - dependency-name: "@bazel/esbuild" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 0d071c00..17616d87 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19,9 +19,9 @@ } }, "node_modules/@bazel/esbuild": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.7.0.tgz", - "integrity": "sha512-5QQVa9gZ7sOVA7b9HdSXLvDuZ8crqubGJkEsNUjSh1pSzHuyMIqKYbYaEhCFrhfk4M/XoTy/BkIER0bJSZYjMw==", + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.7.1.tgz", + "integrity": "sha512-mNi5AaXQ5h6kwIkgXCtwZIvzhf+iEgj54PS4riHyWmk3qwFa+XqgLK+b//9tdjNVtisrIoyiZ0+J2Q6dU5YQsA==", "dev": true, "hasInstallScript": true }, @@ -764,9 +764,9 @@ }, "dependencies": { "@bazel/esbuild": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.7.0.tgz", - "integrity": "sha512-5QQVa9gZ7sOVA7b9HdSXLvDuZ8crqubGJkEsNUjSh1pSzHuyMIqKYbYaEhCFrhfk4M/XoTy/BkIER0bJSZYjMw==", + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.7.1.tgz", + "integrity": "sha512-mNi5AaXQ5h6kwIkgXCtwZIvzhf+iEgj54PS4riHyWmk3qwFa+XqgLK+b//9tdjNVtisrIoyiZ0+J2Q6dU5YQsA==", "dev": true }, "@bazel/typescript": { From 44ad54d2fe131400fd49b61c512ce6a792fe9d84 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Oct 2022 21:43:14 -0700 Subject: [PATCH 18/31] Bump @bazel/typescript from 5.7.0 to 5.7.1 (#61) Bumps [@bazel/typescript](https://github.com/bazelbuild/rules_nodejs/tree/HEAD/packages/typescript) from 5.7.0 to 5.7.1. - [Release notes](https://github.com/bazelbuild/rules_nodejs/releases) - [Changelog](https://github.com/bazelbuild/rules_nodejs/blob/stable/CHANGELOG.md) - [Commits](https://github.com/bazelbuild/rules_nodejs/commits/5.7.1/packages/typescript) --- updated-dependencies: - dependency-name: "@bazel/typescript" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/package-lock.json b/package-lock.json index 17616d87..c791ce18 100644 --- a/package-lock.json +++ b/package-lock.json @@ -26,13 +26,13 @@ "hasInstallScript": true }, "node_modules/@bazel/typescript": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.7.0.tgz", - "integrity": "sha512-5c06vi2rQqd75GieqYGsNVon3tnkvbjMlVLJuwJ5/VtC9uOXKlCwrqxV8tbx789PTTtACNYzwKJTVW++58tgDA==", + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.7.1.tgz", + "integrity": "sha512-MAnAtFxA2znadm81+rbYXcyWX1DEF/urzZ1F4LBq+w27EQ4PGyqIqCM5om7JcoSZJwjjMoBJc3SflRsMrZZ6+g==", "dev": true, "hasInstallScript": true, "dependencies": { - "@bazel/worker": "5.7.0", + "@bazel/worker": "5.7.1", "semver": "5.6.0", "source-map-support": "0.5.9", "tsutils": "3.21.0" @@ -45,9 +45,9 @@ } }, "node_modules/@bazel/worker": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.7.0.tgz", - "integrity": "sha512-VqTG+0gsgXM07q+HiQcSAggNnAzjLei8lzlJQ+mey12KGI4AbNJ1vxlk2pnw9BZdckfe2rRzwkF44B5SNqIgSQ==", + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.7.1.tgz", + "integrity": "sha512-UndmQVRqK0t0NMNl8I1P5XmxzdPvMA0X6jufszpfwy5gyzjOxeiOIzmC0ALCOx78CuJqOB/8WOI1pwTRmhd0tg==", "dev": true, "dependencies": { "google-protobuf": "^3.6.1" @@ -321,9 +321,9 @@ } }, "node_modules/google-protobuf": { - "version": "3.21.1", - "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.21.1.tgz", - "integrity": "sha512-iiQnqsR7nzdYfJjo2yOpJJ2bsAaOvV/85HjDx/sxcOJcNMgyj3iK00HsbZbhKS+EixWdu9fPn7quaBvb4IQHtw==", + "version": "3.21.2", + "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.21.2.tgz", + "integrity": "sha512-3MSOYFO5U9mPGikIYCzK0SaThypfGgS6bHqrUGXG3DPHCrb+txNqeEcns1W0lkGfk0rCyNXm7xB9rMxnCiZOoA==", "dev": true }, "node_modules/html-encoding-sniffer": { @@ -770,21 +770,21 @@ "dev": true }, "@bazel/typescript": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.7.0.tgz", - "integrity": "sha512-5c06vi2rQqd75GieqYGsNVon3tnkvbjMlVLJuwJ5/VtC9uOXKlCwrqxV8tbx789PTTtACNYzwKJTVW++58tgDA==", + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.7.1.tgz", + "integrity": "sha512-MAnAtFxA2znadm81+rbYXcyWX1DEF/urzZ1F4LBq+w27EQ4PGyqIqCM5om7JcoSZJwjjMoBJc3SflRsMrZZ6+g==", "dev": true, "requires": { - "@bazel/worker": "5.7.0", + "@bazel/worker": "5.7.1", "semver": "5.6.0", "source-map-support": "0.5.9", "tsutils": "3.21.0" } }, "@bazel/worker": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.7.0.tgz", - "integrity": "sha512-VqTG+0gsgXM07q+HiQcSAggNnAzjLei8lzlJQ+mey12KGI4AbNJ1vxlk2pnw9BZdckfe2rRzwkF44B5SNqIgSQ==", + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.7.1.tgz", + "integrity": "sha512-UndmQVRqK0t0NMNl8I1P5XmxzdPvMA0X6jufszpfwy5gyzjOxeiOIzmC0ALCOx78CuJqOB/8WOI1pwTRmhd0tg==", "dev": true, "requires": { "google-protobuf": "^3.6.1" @@ -991,9 +991,9 @@ } }, "google-protobuf": { - "version": "3.21.1", - "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.21.1.tgz", - "integrity": "sha512-iiQnqsR7nzdYfJjo2yOpJJ2bsAaOvV/85HjDx/sxcOJcNMgyj3iK00HsbZbhKS+EixWdu9fPn7quaBvb4IQHtw==", + "version": "3.21.2", + "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.21.2.tgz", + "integrity": "sha512-3MSOYFO5U9mPGikIYCzK0SaThypfGgS6bHqrUGXG3DPHCrb+txNqeEcns1W0lkGfk0rCyNXm7xB9rMxnCiZOoA==", "dev": true }, "html-encoding-sniffer": { From d29d817482a57636c032c47d2a15dc9a39955f7e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Oct 2022 22:57:30 -0700 Subject: [PATCH 19/31] Bump jsdom from 20.0.1 to 20.0.2 (#64) Bumps [jsdom](https://github.com/jsdom/jsdom) from 20.0.1 to 20.0.2. - [Release notes](https://github.com/jsdom/jsdom/releases) - [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md) - [Commits](https://github.com/jsdom/jsdom/compare/20.0.1...20.0.2) --- updated-dependencies: - dependency-name: jsdom dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index c791ce18..f71d0bd8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -379,9 +379,9 @@ "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" }, "node_modules/jsdom": { - "version": "20.0.1", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.1.tgz", - "integrity": "sha512-pksjj7Rqoa+wdpkKcLzQRHhJCEE42qQhl/xLMUKHgoSejaKOdaXEAnqs6uDNwMl/fciHTzKeR8Wm8cw7N+g98A==", + "version": "20.0.2", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.2.tgz", + "integrity": "sha512-AHWa+QO/cgRg4N+DsmHg1Y7xnz+8KU3EflM0LVDTdmrYOc1WWTSkOjtpUveQH+1Bqd5rtcVnb/DuxV/UjDO4rA==", "dependencies": { "abab": "^2.0.6", "acorn": "^8.8.0", @@ -1037,9 +1037,9 @@ "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" }, "jsdom": { - "version": "20.0.1", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.1.tgz", - "integrity": "sha512-pksjj7Rqoa+wdpkKcLzQRHhJCEE42qQhl/xLMUKHgoSejaKOdaXEAnqs6uDNwMl/fciHTzKeR8Wm8cw7N+g98A==", + "version": "20.0.2", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.2.tgz", + "integrity": "sha512-AHWa+QO/cgRg4N+DsmHg1Y7xnz+8KU3EflM0LVDTdmrYOc1WWTSkOjtpUveQH+1Bqd5rtcVnb/DuxV/UjDO4rA==", "requires": { "abab": "^2.0.6", "acorn": "^8.8.0", From f431894015c49bf1a4f4533d2a65810bbcc38887 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Nov 2022 19:32:04 -0800 Subject: [PATCH 20/31] Bump @types/chrome from 0.0.200 to 0.0.202 (#65) Bumps [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) from 0.0.200 to 0.0.202. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chrome) --- updated-dependencies: - dependency-name: "@types/chrome" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index f71d0bd8..147f1a59 100644 --- a/package-lock.json +++ b/package-lock.json @@ -62,9 +62,9 @@ } }, "node_modules/@types/chrome": { - "version": "0.0.200", - "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.200.tgz", - "integrity": "sha512-oNT2/KHgZECTzj4oavLc20r3D2yFufLwGNaLFAN8YxYyNVJGenX3l3oGBynhoT/Azm3eAfyDynrdca6jB7CNzw==", + "version": "0.0.202", + "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.202.tgz", + "integrity": "sha512-Oc4daL9sFS+9MToVZPLMBxR7PxsEdod0b8wOY11lRr06GJp43MORvHeDyMD8QzeRGT6HI13oaYAe2PBgvALc4w==", "dev": true, "dependencies": { "@types/filesystem": "*", @@ -796,9 +796,9 @@ "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" }, "@types/chrome": { - "version": "0.0.200", - "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.200.tgz", - "integrity": "sha512-oNT2/KHgZECTzj4oavLc20r3D2yFufLwGNaLFAN8YxYyNVJGenX3l3oGBynhoT/Azm3eAfyDynrdca6jB7CNzw==", + "version": "0.0.202", + "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.202.tgz", + "integrity": "sha512-Oc4daL9sFS+9MToVZPLMBxR7PxsEdod0b8wOY11lRr06GJp43MORvHeDyMD8QzeRGT6HI13oaYAe2PBgvALc4w==", "dev": true, "requires": { "@types/filesystem": "*", From 2b809d1a6fc124338a8da8243657551c43d830ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 17 Nov 2022 20:32:04 -0800 Subject: [PATCH 21/31] Bump typescript from 4.8.4 to 4.9.3 (#66) Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.8.4 to 4.9.3. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](https://github.com/Microsoft/TypeScript/commits) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 147f1a59..6097b2ba 100644 --- a/package-lock.json +++ b/package-lock.json @@ -633,9 +633,9 @@ } }, "node_modules/typescript": { - "version": "4.8.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz", - "integrity": "sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==", + "version": "4.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.3.tgz", + "integrity": "sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==", "dev": true, "bin": { "tsc": "bin/tsc", @@ -1235,9 +1235,9 @@ } }, "typescript": { - "version": "4.8.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz", - "integrity": "sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==", + "version": "4.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.3.tgz", + "integrity": "sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==", "dev": true }, "universalify": { From 7894833b416e8f6d3754c004cbe683abcbe48676 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Nov 2022 21:31:42 -0800 Subject: [PATCH 22/31] Bump jsdom from 20.0.2 to 20.0.3 (#67) Bumps [jsdom](https://github.com/jsdom/jsdom) from 20.0.2 to 20.0.3. - [Release notes](https://github.com/jsdom/jsdom/releases) - [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md) - [Commits](https://github.com/jsdom/jsdom/compare/20.0.2...20.0.3) --- updated-dependencies: - dependency-name: jsdom dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 78 +++++++++++++++++++++++------------------------ 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/package-lock.json b/package-lock.json index 6097b2ba..73db473c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -103,9 +103,9 @@ "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" }, "node_modules/acorn": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", - "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", + "version": "8.8.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", + "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", "bin": { "acorn": "bin/acorn" }, @@ -214,9 +214,9 @@ } }, "node_modules/decimal.js": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.1.tgz", - "integrity": "sha512-F29o+vci4DodHYT9UrR5IEbfBw9pE5eSapIJdTqXK5+6hq+t8VRxwQyKlW2i+KDKFkkJQRvFyI/QXD83h8LyQw==" + "version": "10.4.2", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.2.tgz", + "integrity": "sha512-ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA==" }, "node_modules/deep-is": { "version": "0.1.4", @@ -379,17 +379,17 @@ "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" }, "node_modules/jsdom": { - "version": "20.0.2", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.2.tgz", - "integrity": "sha512-AHWa+QO/cgRg4N+DsmHg1Y7xnz+8KU3EflM0LVDTdmrYOc1WWTSkOjtpUveQH+1Bqd5rtcVnb/DuxV/UjDO4rA==", + "version": "20.0.3", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", + "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", "dependencies": { "abab": "^2.0.6", - "acorn": "^8.8.0", + "acorn": "^8.8.1", "acorn-globals": "^7.0.0", "cssom": "^0.5.0", "cssstyle": "^2.3.0", "data-urls": "^3.0.2", - "decimal.js": "^10.4.1", + "decimal.js": "^10.4.2", "domexception": "^4.0.0", "escodegen": "^2.0.0", "form-data": "^4.0.0", @@ -402,12 +402,12 @@ "saxes": "^6.0.0", "symbol-tree": "^3.2.4", "tough-cookie": "^4.1.2", - "w3c-xmlserializer": "^3.0.0", + "w3c-xmlserializer": "^4.0.0", "webidl-conversions": "^7.0.0", "whatwg-encoding": "^2.0.0", "whatwg-mimetype": "^3.0.0", "whatwg-url": "^11.0.0", - "ws": "^8.9.0", + "ws": "^8.11.0", "xml-name-validator": "^4.0.0" }, "engines": { @@ -663,14 +663,14 @@ } }, "node_modules/w3c-xmlserializer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-3.0.0.tgz", - "integrity": "sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", + "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", "dependencies": { "xml-name-validator": "^4.0.0" }, "engines": { - "node": ">=12" + "node": ">=14" } }, "node_modules/web-locks": { @@ -729,9 +729,9 @@ } }, "node_modules/ws": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.9.0.tgz", - "integrity": "sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", "engines": { "node": ">=10.0.0" }, @@ -837,9 +837,9 @@ "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" }, "acorn": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", - "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==" + "version": "8.8.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", + "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==" }, "acorn-globals": { "version": "7.0.1", @@ -921,9 +921,9 @@ } }, "decimal.js": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.1.tgz", - "integrity": "sha512-F29o+vci4DodHYT9UrR5IEbfBw9pE5eSapIJdTqXK5+6hq+t8VRxwQyKlW2i+KDKFkkJQRvFyI/QXD83h8LyQw==" + "version": "10.4.2", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.2.tgz", + "integrity": "sha512-ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA==" }, "deep-is": { "version": "0.1.4", @@ -1037,17 +1037,17 @@ "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" }, "jsdom": { - "version": "20.0.2", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.2.tgz", - "integrity": "sha512-AHWa+QO/cgRg4N+DsmHg1Y7xnz+8KU3EflM0LVDTdmrYOc1WWTSkOjtpUveQH+1Bqd5rtcVnb/DuxV/UjDO4rA==", + "version": "20.0.3", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", + "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", "requires": { "abab": "^2.0.6", - "acorn": "^8.8.0", + "acorn": "^8.8.1", "acorn-globals": "^7.0.0", "cssom": "^0.5.0", "cssstyle": "^2.3.0", "data-urls": "^3.0.2", - "decimal.js": "^10.4.1", + "decimal.js": "^10.4.2", "domexception": "^4.0.0", "escodegen": "^2.0.0", "form-data": "^4.0.0", @@ -1060,12 +1060,12 @@ "saxes": "^6.0.0", "symbol-tree": "^3.2.4", "tough-cookie": "^4.1.2", - "w3c-xmlserializer": "^3.0.0", + "w3c-xmlserializer": "^4.0.0", "webidl-conversions": "^7.0.0", "whatwg-encoding": "^2.0.0", "whatwg-mimetype": "^3.0.0", "whatwg-url": "^11.0.0", - "ws": "^8.9.0", + "ws": "^8.11.0", "xml-name-validator": "^4.0.0" } }, @@ -1255,9 +1255,9 @@ } }, "w3c-xmlserializer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-3.0.0.tgz", - "integrity": "sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", + "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", "requires": { "xml-name-validator": "^4.0.0" } @@ -1300,9 +1300,9 @@ "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" }, "ws": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.9.0.tgz", - "integrity": "sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", "requires": {} }, "xml-name-validator": { From 7331f4d46fd3268a347684e4fe20e7317620ac48 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Nov 2022 12:34:15 -0800 Subject: [PATCH 23/31] Bump @types/chrome from 0.0.202 to 0.0.203 (#68) Bumps [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) from 0.0.202 to 0.0.203. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chrome) --- updated-dependencies: - dependency-name: "@types/chrome" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 73db473c..4bb9ca0f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -62,9 +62,9 @@ } }, "node_modules/@types/chrome": { - "version": "0.0.202", - "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.202.tgz", - "integrity": "sha512-Oc4daL9sFS+9MToVZPLMBxR7PxsEdod0b8wOY11lRr06GJp43MORvHeDyMD8QzeRGT6HI13oaYAe2PBgvALc4w==", + "version": "0.0.203", + "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.203.tgz", + "integrity": "sha512-JlQNebwpBETVc8U1Rr2inDFuOTtn0lahRAhnddx1dd0S5RrLAFJEEsyIu7AXI14mkCgSunksnuLGioH8kvBqRA==", "dev": true, "dependencies": { "@types/filesystem": "*", @@ -796,9 +796,9 @@ "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" }, "@types/chrome": { - "version": "0.0.202", - "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.202.tgz", - "integrity": "sha512-Oc4daL9sFS+9MToVZPLMBxR7PxsEdod0b8wOY11lRr06GJp43MORvHeDyMD8QzeRGT6HI13oaYAe2PBgvALc4w==", + "version": "0.0.203", + "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.203.tgz", + "integrity": "sha512-JlQNebwpBETVc8U1Rr2inDFuOTtn0lahRAhnddx1dd0S5RrLAFJEEsyIu7AXI14mkCgSunksnuLGioH8kvBqRA==", "dev": true, "requires": { "@types/filesystem": "*", From 49f0c4fcb8af22e2e1a31f6e12772f022df7b151 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Nov 2022 12:21:33 -0800 Subject: [PATCH 24/31] Bump @bazel/esbuild from 5.7.1 to 5.7.2 (#69) Bumps [@bazel/esbuild](https://github.com/bazelbuild/rules_nodejs/tree/HEAD/packages/esbuild) from 5.7.1 to 5.7.2. - [Release notes](https://github.com/bazelbuild/rules_nodejs/releases) - [Changelog](https://github.com/bazelbuild/rules_nodejs/blob/stable/CHANGELOG.md) - [Commits](https://github.com/bazelbuild/rules_nodejs/commits/5.7.2/packages/esbuild) --- updated-dependencies: - dependency-name: "@bazel/esbuild" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 4bb9ca0f..9de7dd84 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19,9 +19,9 @@ } }, "node_modules/@bazel/esbuild": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.7.1.tgz", - "integrity": "sha512-mNi5AaXQ5h6kwIkgXCtwZIvzhf+iEgj54PS4riHyWmk3qwFa+XqgLK+b//9tdjNVtisrIoyiZ0+J2Q6dU5YQsA==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.7.2.tgz", + "integrity": "sha512-YseNk23x30bynpXOvx0BdvPX2WSuI+6sDtx+Cn7Q27cBZw41438qjciuE2UlGME26p/5VULyduOqp0a3T3ZTjQ==", "dev": true, "hasInstallScript": true }, @@ -764,9 +764,9 @@ }, "dependencies": { "@bazel/esbuild": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.7.1.tgz", - "integrity": "sha512-mNi5AaXQ5h6kwIkgXCtwZIvzhf+iEgj54PS4riHyWmk3qwFa+XqgLK+b//9tdjNVtisrIoyiZ0+J2Q6dU5YQsA==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.7.2.tgz", + "integrity": "sha512-YseNk23x30bynpXOvx0BdvPX2WSuI+6sDtx+Cn7Q27cBZw41438qjciuE2UlGME26p/5VULyduOqp0a3T3ZTjQ==", "dev": true }, "@bazel/typescript": { From 97c538dccb32584a282fc385de8a7f1537299125 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 9 Dec 2022 07:46:55 -0800 Subject: [PATCH 25/31] Bump @bazel/typescript from 5.7.1 to 5.7.2 (#70) Bumps [@bazel/typescript](https://github.com/bazelbuild/rules_nodejs/tree/HEAD/packages/typescript) from 5.7.1 to 5.7.2. - [Release notes](https://github.com/bazelbuild/rules_nodejs/releases) - [Changelog](https://github.com/bazelbuild/rules_nodejs/blob/stable/CHANGELOG.md) - [Commits](https://github.com/bazelbuild/rules_nodejs/commits/5.7.2/packages/typescript) --- updated-dependencies: - dependency-name: "@bazel/typescript" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9de7dd84..e5412b78 100644 --- a/package-lock.json +++ b/package-lock.json @@ -26,13 +26,13 @@ "hasInstallScript": true }, "node_modules/@bazel/typescript": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.7.1.tgz", - "integrity": "sha512-MAnAtFxA2znadm81+rbYXcyWX1DEF/urzZ1F4LBq+w27EQ4PGyqIqCM5om7JcoSZJwjjMoBJc3SflRsMrZZ6+g==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.7.2.tgz", + "integrity": "sha512-tarBJBEIirnq/YaeYu18vXcDxjzlq4xhCXvXUxA0lhHX5oArjEcAEn4tmO0jF+t/7cbkAdMT7daG6vIHSz0QAA==", "dev": true, "hasInstallScript": true, "dependencies": { - "@bazel/worker": "5.7.1", + "@bazel/worker": "5.7.2", "semver": "5.6.0", "source-map-support": "0.5.9", "tsutils": "3.21.0" @@ -45,9 +45,9 @@ } }, "node_modules/@bazel/worker": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.7.1.tgz", - "integrity": "sha512-UndmQVRqK0t0NMNl8I1P5XmxzdPvMA0X6jufszpfwy5gyzjOxeiOIzmC0ALCOx78CuJqOB/8WOI1pwTRmhd0tg==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.7.2.tgz", + "integrity": "sha512-H+auDA0QKF4mtZxKkZ2OKJvD7hGXVsVKtvcf4lbb93ur0ldpb5k810PcDxngmIGBcIX5kmyxniNTIiGFNobWTg==", "dev": true, "dependencies": { "google-protobuf": "^3.6.1" @@ -770,21 +770,21 @@ "dev": true }, "@bazel/typescript": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.7.1.tgz", - "integrity": "sha512-MAnAtFxA2znadm81+rbYXcyWX1DEF/urzZ1F4LBq+w27EQ4PGyqIqCM5om7JcoSZJwjjMoBJc3SflRsMrZZ6+g==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.7.2.tgz", + "integrity": "sha512-tarBJBEIirnq/YaeYu18vXcDxjzlq4xhCXvXUxA0lhHX5oArjEcAEn4tmO0jF+t/7cbkAdMT7daG6vIHSz0QAA==", "dev": true, "requires": { - "@bazel/worker": "5.7.1", + "@bazel/worker": "5.7.2", "semver": "5.6.0", "source-map-support": "0.5.9", "tsutils": "3.21.0" } }, "@bazel/worker": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.7.1.tgz", - "integrity": "sha512-UndmQVRqK0t0NMNl8I1P5XmxzdPvMA0X6jufszpfwy5gyzjOxeiOIzmC0ALCOx78CuJqOB/8WOI1pwTRmhd0tg==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.7.2.tgz", + "integrity": "sha512-H+auDA0QKF4mtZxKkZ2OKJvD7hGXVsVKtvcf4lbb93ur0ldpb5k810PcDxngmIGBcIX5kmyxniNTIiGFNobWTg==", "dev": true, "requires": { "google-protobuf": "^3.6.1" From f9487ef72067b09a3c62cc2869d90a0e322c83d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 9 Dec 2022 12:37:10 -0800 Subject: [PATCH 26/31] Bump mnao305/chrome-extension-upload from 3.0.0 to 4.0.0 (#71) Bumps [mnao305/chrome-extension-upload](https://github.com/mnao305/chrome-extension-upload) from 3.0.0 to 4.0.0. - [Release notes](https://github.com/mnao305/chrome-extension-upload/releases) - [Commits](https://github.com/mnao305/chrome-extension-upload/compare/3.0.0...v4.0.0) --- updated-dependencies: - dependency-name: mnao305/chrome-extension-upload dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e2dbe2ac..b592d4e3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: files: | bazel-bin/chrome-ssh-agent.zip - name: Publish to Webstore - uses: mnao305/chrome-extension-upload@3.0.0 + uses: mnao305/chrome-extension-upload@v4.0.0 with: file-path;: bazel-bin/chrome-ssh-agent.zip extension-id: eechpbnaifiimgajnomdipfaamobdfha From 2b321a64c36764a0a387e81ebebe1dc583afbba0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 9 Dec 2022 12:46:47 -0800 Subject: [PATCH 27/31] Bump typescript from 4.9.3 to 4.9.4 (#72) Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.9.3 to 4.9.4. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](https://github.com/Microsoft/TypeScript/compare/v4.9.3...v4.9.4) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index e5412b78..eb455fb6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -633,9 +633,9 @@ } }, "node_modules/typescript": { - "version": "4.9.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.3.tgz", - "integrity": "sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==", + "version": "4.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.4.tgz", + "integrity": "sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==", "dev": true, "bin": { "tsc": "bin/tsc", @@ -1235,9 +1235,9 @@ } }, "typescript": { - "version": "4.9.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.3.tgz", - "integrity": "sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==", + "version": "4.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.4.tgz", + "integrity": "sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==", "dev": true }, "universalify": { From 2ce50c135df5c9cecdc76bdde7ddd485c61fc052 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 9 Dec 2022 12:56:58 -0800 Subject: [PATCH 28/31] Bump @bazel/esbuild from 5.7.2 to 5.7.3 (#73) Bumps [@bazel/esbuild](https://github.com/bazelbuild/rules_nodejs/tree/HEAD/packages/esbuild) from 5.7.2 to 5.7.3. - [Release notes](https://github.com/bazelbuild/rules_nodejs/releases) - [Changelog](https://github.com/bazelbuild/rules_nodejs/blob/stable/CHANGELOG.md) - [Commits](https://github.com/bazelbuild/rules_nodejs/commits/5.7.3/packages/esbuild) --- updated-dependencies: - dependency-name: "@bazel/esbuild" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index eb455fb6..ad4a9d34 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19,9 +19,9 @@ } }, "node_modules/@bazel/esbuild": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.7.2.tgz", - "integrity": "sha512-YseNk23x30bynpXOvx0BdvPX2WSuI+6sDtx+Cn7Q27cBZw41438qjciuE2UlGME26p/5VULyduOqp0a3T3ZTjQ==", + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.7.3.tgz", + "integrity": "sha512-SzOmPlvI3rzYz73tHNVl3GlvfSo+NFZzuQQeJWhUq3JMHLYjUU14A9nY0WhBKTamD4MatJg9mUJOdOnXvOVtxQ==", "dev": true, "hasInstallScript": true }, @@ -764,9 +764,9 @@ }, "dependencies": { "@bazel/esbuild": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.7.2.tgz", - "integrity": "sha512-YseNk23x30bynpXOvx0BdvPX2WSuI+6sDtx+Cn7Q27cBZw41438qjciuE2UlGME26p/5VULyduOqp0a3T3ZTjQ==", + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/@bazel/esbuild/-/esbuild-5.7.3.tgz", + "integrity": "sha512-SzOmPlvI3rzYz73tHNVl3GlvfSo+NFZzuQQeJWhUq3JMHLYjUU14A9nY0WhBKTamD4MatJg9mUJOdOnXvOVtxQ==", "dev": true }, "@bazel/typescript": { From 0ef023e0a1680a559a82a0bb27b30e09c9308a55 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 9 Dec 2022 13:09:10 -0800 Subject: [PATCH 29/31] Bump @bazel/typescript from 5.7.2 to 5.7.3 (#74) Bumps [@bazel/typescript](https://github.com/bazelbuild/rules_nodejs/tree/HEAD/packages/typescript) from 5.7.2 to 5.7.3. - [Release notes](https://github.com/bazelbuild/rules_nodejs/releases) - [Changelog](https://github.com/bazelbuild/rules_nodejs/blob/stable/CHANGELOG.md) - [Commits](https://github.com/bazelbuild/rules_nodejs/commits/5.7.3/packages/typescript) --- updated-dependencies: - dependency-name: "@bazel/typescript" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/package-lock.json b/package-lock.json index ad4a9d34..4fa6f25d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -26,13 +26,13 @@ "hasInstallScript": true }, "node_modules/@bazel/typescript": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.7.2.tgz", - "integrity": "sha512-tarBJBEIirnq/YaeYu18vXcDxjzlq4xhCXvXUxA0lhHX5oArjEcAEn4tmO0jF+t/7cbkAdMT7daG6vIHSz0QAA==", + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.7.3.tgz", + "integrity": "sha512-GuDTCtEZcxOXZTJAZi0gfi/i3wm4r6Ny6I7NZLj4Xk9tX+yyRG8SBuUHN972S8/NmT5fFxnPymKfJiurXM4Txg==", "dev": true, "hasInstallScript": true, "dependencies": { - "@bazel/worker": "5.7.2", + "@bazel/worker": "5.7.3", "semver": "5.6.0", "source-map-support": "0.5.9", "tsutils": "3.21.0" @@ -45,9 +45,9 @@ } }, "node_modules/@bazel/worker": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.7.2.tgz", - "integrity": "sha512-H+auDA0QKF4mtZxKkZ2OKJvD7hGXVsVKtvcf4lbb93ur0ldpb5k810PcDxngmIGBcIX5kmyxniNTIiGFNobWTg==", + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.7.3.tgz", + "integrity": "sha512-P3Qo3bTw/NgxkcUNdUTb5j8jm6qIzRvKmFYMMyUyUBN0b7sAB6Qlk0QAP9Lok9+G9TbCXmmbT0dauftsH2x5fQ==", "dev": true, "dependencies": { "google-protobuf": "^3.6.1" @@ -770,21 +770,21 @@ "dev": true }, "@bazel/typescript": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.7.2.tgz", - "integrity": "sha512-tarBJBEIirnq/YaeYu18vXcDxjzlq4xhCXvXUxA0lhHX5oArjEcAEn4tmO0jF+t/7cbkAdMT7daG6vIHSz0QAA==", + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/@bazel/typescript/-/typescript-5.7.3.tgz", + "integrity": "sha512-GuDTCtEZcxOXZTJAZi0gfi/i3wm4r6Ny6I7NZLj4Xk9tX+yyRG8SBuUHN972S8/NmT5fFxnPymKfJiurXM4Txg==", "dev": true, "requires": { - "@bazel/worker": "5.7.2", + "@bazel/worker": "5.7.3", "semver": "5.6.0", "source-map-support": "0.5.9", "tsutils": "3.21.0" } }, "@bazel/worker": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.7.2.tgz", - "integrity": "sha512-H+auDA0QKF4mtZxKkZ2OKJvD7hGXVsVKtvcf4lbb93ur0ldpb5k810PcDxngmIGBcIX5kmyxniNTIiGFNobWTg==", + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/@bazel/worker/-/worker-5.7.3.tgz", + "integrity": "sha512-P3Qo3bTw/NgxkcUNdUTb5j8jm6qIzRvKmFYMMyUyUBN0b7sAB6Qlk0QAP9Lok9+G9TbCXmmbT0dauftsH2x5fQ==", "dev": true, "requires": { "google-protobuf": "^3.6.1" From c0c46c5983b3ab66692c40de1ea62ba6c22550c8 Mon Sep 17 00:00:00 2001 From: Rich Alimi Date: Sat, 10 Dec 2022 13:11:14 -0800 Subject: [PATCH 30/31] Add default dev container (#76) --- .devcontainer/Dockerfile | 25 +++++++++++++++++++++++++ .devcontainer/devcontainer.json | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 .devcontainer/Dockerfile create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 00000000..7ac963bd --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,25 @@ +FROM mcr.microsoft.com/devcontainers/base:bullseye + +# Install basic software that enables other software to be installed +RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ + && apt-get install -y --no-install-recommends \ + curl apt-transport-https ca-certificates \ + gnupg \ + pkg-config \ + zip unzip \ + python \ + git + +# Install Bazel +ARG BAZELISK_VERSION=v1.10.1 +ARG BAZELISK_DOWNLOAD_SHA=dev-mode +RUN curl -fSsL -o /usr/local/bin/bazelisk https://github.com/bazelbuild/bazelisk/releases/download/${BAZELISK_VERSION}/bazelisk-linux-amd64 \ + && ([ "${BAZELISK_DOWNLOAD_SHA}" = "dev-mode" ] || echo "${BAZELISK_DOWNLOAD_SHA} */usr/local/bin/bazelisk" | sha256sum --check - ) \ + && chmod 0755 /usr/local/bin/bazelisk \ + && ln -sf /usr/local/bin/bazelisk /usr/local/bin/bazel + +# Clean extraneous packages and files +RUN apt-get autoremove -y \ + && apt-get clean -y \ + && rm -rf /var/lib/apt/lists/* + diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..879de62f --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,33 @@ +{ + "name": "Bazel (Community)", + "build": { + "dockerfile": "Dockerfile", + "args": { + "BAZELISK_VERSION": "v1.10.1", + "BAZELISK_DOWNLOAD_SHA": "4cb534c52cdd47a6223d4596d530e7c9c785438ab3b0a49ff347e991c210b2cd" + } + }, + "remoteUser": "vscode", + "features": { + "ghcr.io/devcontainers/features/common-utils:1": { + "installZsh": false, + "installOhMyZsh": false, + "upgradePackages": true + }, + "ghcr.io/devcontainers/features/go:1": {}, + "ghcr.io/devcontainers/features/node:1": {} + }, + + "settings": { + }, + + "customizations": { + "vscode": { + "extensions": [ + "dbaeumer.vscode-eslint", + "bazelbuild.vscode-bazel", + "golang.go" + ] + } + } +} From fb720f8bf5499812eb9bd17c593864304425e98e Mon Sep 17 00:00:00 2001 From: Rich Alimi Date: Sat, 10 Dec 2022 13:25:04 -0800 Subject: [PATCH 31/31] Update dependencies and remove patches that have been integrated. (#77) * Update dependencies and remove patches that have been integrated. * Add default dev container (#76) --- WORKSPACE | 30 +++++------ go.mod | 15 +++--- go.sum | 22 +++++++++ go_deps.bzl | 77 +++++++++++++++++------------ patches/norunners-vert-go1.18.patch | 12 ----- patches/rules_go-wasm.patch | 11 ----- 6 files changed, 89 insertions(+), 78 deletions(-) delete mode 100644 patches/norunners-vert-go1.18.patch delete mode 100644 patches/rules_go-wasm.patch diff --git a/WORKSPACE b/WORKSPACE index e8607cbb..55b2143f 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -8,18 +8,14 @@ load( http_archive( name = "io_bazel_rules_go", - patch_args = ["-p1"], - patches = [ - "//:patches/rules_go-wasm.patch", - ], - sha256 = "16e9fca53ed6bd4ff4ad76facc9b7b651a89db1689a2877d6fd7b82aa824e366", - urls = ["https://github.com/bazelbuild/rules_go/releases/download/v0.34.0/rules_go-v0.34.0.zip"], + sha256 = "56d8c5a5c91e1af73eca71a6fab2ced959b67c86d12ba37feedb0a2dfea441a6", + urls = ["https://github.com/bazelbuild/rules_go/releases/download/v0.37.0/rules_go-v0.37.0.zip"], ) http_archive( name = "bazel_gazelle", - sha256 = "501deb3d5695ab658e82f6f6f549ba681ea3ca2a5fb7911154b5aa45596183fa", - urls = ["https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.26.0/bazel-gazelle-v0.26.0.tar.gz"], + sha256 = "448e37e0dbf61d6fa8f00aaa12d191745e14f07c31cabfa731f0c8e8a4f41b97", + urls = ["https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.28.0/bazel-gazelle-v0.28.0.tar.gz"], ) http_archive( @@ -30,22 +26,22 @@ http_archive( http_archive( name = "bazel_skylib", - sha256 = "f7be3474d42aae265405a592bb7da8e171919d74c16f082a5457840f06054728", - urls = ["https://github.com/bazelbuild/bazel-skylib/releases/download/1.2.1/bazel-skylib-1.2.1.tar.gz"], + sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506", + urls = ["https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz"], ) http_archive( name = "rules_pkg", - sha256 = "8a298e832762eda1830597d64fe7db58178aa84cd5926d76d5b744d6558941c2", - urls = ["https://github.com/bazelbuild/rules_pkg/releases/download/0.7.0/rules_pkg-0.7.0.tar.gz"], + sha256 = "eea0f59c28a9241156a47d7a8e32db9122f3d50b505fae0f33de6ce4d9b61834", + urls = ["https://github.com/bazelbuild/rules_pkg/releases/download/0.8.0/rules_pkg-0.8.0.tar.gz"], ) http_archive( name = "rules_proto", - sha256 = "e017528fd1c91c5a33f15493e3a398181a9e821a804eb7ff5acdd1d2d6c2b18d", - strip_prefix = "rules_proto-4.0.0-3.20.0", + sha256 = "80d3a4ec17354cccc898bfe32118edd934f851b03029d63ef3fc7c8663a7415c", + strip_prefix = "rules_proto-5.3.0-21.5", urls = [ - "https://github.com/bazelbuild/rules_proto/archive/refs/tags/4.0.0-3.20.0.tar.gz", + "https://github.com/bazelbuild/rules_proto/archive/refs/tags/5.3.0-21.5.tar.gz", ], ) @@ -113,11 +109,11 @@ go_rules_dependencies() go_register_toolchains( nogo = "@//:chrome_ssh_agent_nogo", - version = "1.18", + version = "1.19", ) # Gazelle dependency management support -load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies") +load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository") # Pull in external dependencies: # gazelle:repository_macro go_deps.bzl%go_dependencies diff --git a/go.mod b/go.mod index a7587a2f..c9254ee6 100644 --- a/go.mod +++ b/go.mod @@ -3,23 +3,24 @@ module github.com/google/chrome-ssh-agent go 1.18 require ( - github.com/google/go-cmp v0.5.6 + github.com/google/go-cmp v0.5.9 // https://github.com/tebeka/selenium/commit/e617f9870cec59a6f6e234017e45d36ef0444a04 required to support CRX3 format github.com/tebeka/selenium v0.9.10-0.20211105214847-e9100b7f5ac1 github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a - golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d + golang.org/x/crypto v0.4.0 ) require ( - github.com/bazelbuild/rules_go v0.34.0 - github.com/norunners/vert v0.0.0-20211229045251-b4c39e2856da - golang.org/x/tools v0.0.0-20190624190245-7f2218787638 + github.com/bazelbuild/rules_go v0.37.0 + github.com/norunners/vert v0.0.0-20221203075838-106a353d42dd + golang.org/x/tools v0.4.0 ) require ( github.com/blang/semver v3.5.1+incompatible // indirect - github.com/golang/protobuf v1.3.4 // indirect + github.com/golang/protobuf v1.5.2 // indirect github.com/mediabuyerbot/go-crx3 v1.3.1 // indirect - golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect + golang.org/x/sys v0.3.0 // indirect golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect + google.golang.org/protobuf v1.28.1 // indirect ) diff --git a/go.sum b/go.sum index 9b0e2551..a43d4460 100644 --- a/go.sum +++ b/go.sum @@ -15,6 +15,8 @@ github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPd github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= github.com/bazelbuild/rules_go v0.34.0 h1:cmObMtgIOaEU944SqXtJ9DnlS8IPGGa7pdRnsrpQzXM= github.com/bazelbuild/rules_go v0.34.0/go.mod h1:MC23Dc/wkXEyk3Wpq6lCqz0ZAYOZDw2DR5y3N1q2i7M= +github.com/bazelbuild/rules_go v0.37.0 h1:vbnESGv/t2WgGEbXatwbXAS95dTx93Lv6Uh5QkVF13s= +github.com/bazelbuild/rules_go v0.37.0/go.mod h1:TMHmtfpvyfsxaqfL9WnahCsXMWDMICTw7XeK9yVb+YU= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/blang/semver v3.5.1+incompatible h1:cQNTCjp13qL8KC3Nbxr/y2Bqb63oX6wdnnjpJbkM4JQ= @@ -50,12 +52,18 @@ github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5y github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.4 h1:87PNWwrRvUSnqS4dlcBU/ftvOIBep4sYuBLlh6rX2wk= github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.6 h1:BKbKCqvP6I+rmFHt06ZmyQtvB8xAkWdhFyr0ZUNZcxQ= github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= +github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-github/v27 v27.0.4/go.mod h1:/0Gr8pJ55COkmv+S/yPKCczSkUPIM/LnFyubufRNIS0= github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= @@ -92,6 +100,8 @@ github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/norunners/vert v0.0.0-20211229045251-b4c39e2856da h1:wowEKpELVGcI7utqSzrCbdbSfq4BSfY1wLeQsW6R/as= github.com/norunners/vert v0.0.0-20211229045251-b4c39e2856da/go.mod h1:8iuQLyTSvuzwy6R6l6w6J+i9c/6xPEVoVdcMz9E8FEw= +github.com/norunners/vert v0.0.0-20221203075838-106a353d42dd h1:tHn7K76q9eJ2rXLH/OoxHkdprM3l2A+0kdxOrKYcV7U= +github.com/norunners/vert v0.0.0-20221203075838-106a353d42dd/go.mod h1:8iuQLyTSvuzwy6R6l6w6J+i9c/6xPEVoVdcMz9E8FEw= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= @@ -141,6 +151,8 @@ golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d h1:sK3txAijHtOK88l68nt020reeT1ZdKLIYetKl95FzVY= golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.4.0 h1:UVQgzMY87xqpKNgb+kDsll2Igd33HszWHFLmpaRMq/8= +golang.org/x/crypto v0.4.0/go.mod h1:3quD/ATkf6oY+rnes5c3ExXTbLc8mueNue5/DoinL80= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= @@ -164,6 +176,7 @@ golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 h1:CIJ76btIcR3eFI5EgSo6k1qKw9KJexJuRLI9G7Hp5wE= +golang.org/x/net v0.3.0 h1:VWL6FNY2bEEmsGVKabSlHu5Irp34xmMRoqb/9lF9lxk= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -185,7 +198,10 @@ golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c h1:F1jZWGFhYfh0Ci55sIpILtKKK8p3i2/krTr0H1rg74I= golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.3.0 h1:w8ZOecv6NaNa/zC8944JTU3vz4u6Lagfk4RPQxv92NQ= +golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 h1:v+OssWQX+hTHEmOBgwxdZxK4zHq3yOs8F9J7mk0PY8E= +golang.org/x/term v0.3.0 h1:qoo4akIqOcDME5bhc/NgxUdovd6BSS2uMsVjB56q1xI= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= @@ -203,6 +219,8 @@ golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBn golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190624190245-7f2218787638 h1:uIfBkD8gLczr4XDgYpt/qJYds2YJwZRNw4zs7wSnNhk= golang.org/x/tools v0.0.0-20190624190245-7f2218787638/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.4.0 h1:7mTAgkunk3fr4GAloyyCasadO6h9zSsQZbwvcaIciV4= +golang.org/x/tools v0.4.0/go.mod h1:UE5sM2OK9E/d67R0ANs2xJizIymRP5gJU295PvKXxjQ= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -222,6 +240,10 @@ google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZi google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w= +google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= diff --git a/go_deps.bzl b/go_deps.bzl index f26415ff..8b1effac 100644 --- a/go_deps.bzl +++ b/go_deps.bzl @@ -1,6 +1,24 @@ load("@bazel_gazelle//:deps.bzl", "go_repository") def go_dependencies(): + go_repository( + name = "com_github_yuin_goldmark", + importpath = "github.com/yuin/goldmark", + sum = "h1:fVcFKWvrslecOb/tg+Cc05dkeYx540o0FuFt3nUVDoE=", + version = "v1.4.13", + ) + go_repository( + name = "org_golang_google_protobuf", + importpath = "google.golang.org/protobuf", + sum = "h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w=", + version = "v1.28.1", + ) + go_repository( + name = "org_golang_x_mod", + importpath = "golang.org/x/mod", + sum = "h1:LapD9S96VoQRhi/GrNTqeBJFrUjs5UHCAtTlgwA5oZA=", + version = "v0.7.0", + ) go_repository( name = "co_honnef_go_tools", importpath = "honnef.co/go/tools", @@ -35,8 +53,8 @@ def go_dependencies(): go_repository( name = "com_github_bazelbuild_rules_go", importpath = "github.com/bazelbuild/rules_go", - sum = "h1:cmObMtgIOaEU944SqXtJ9DnlS8IPGGa7pdRnsrpQzXM=", - version = "v0.34.0", + sum = "h1:vbnESGv/t2WgGEbXatwbXAS95dTx93Lv6Uh5QkVF13s=", + version = "v0.37.0", ) go_repository( @@ -199,14 +217,14 @@ def go_dependencies(): go_repository( name = "com_github_golang_mock", importpath = "github.com/golang/mock", - sum = "h1:qGJ6qTW+x6xX/my+8YUVl4WNpX9B7+/l2tRsHGZ7f2s=", - version = "v1.3.1", + sum = "h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc=", + version = "v1.6.0", ) go_repository( name = "com_github_golang_protobuf", importpath = "github.com/golang/protobuf", - sum = "h1:87PNWwrRvUSnqS4dlcBU/ftvOIBep4sYuBLlh6rX2wk=", - version = "v1.3.4", + sum = "h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw=", + version = "v1.5.2", ) go_repository( name = "com_github_google_btree", @@ -218,8 +236,8 @@ def go_dependencies(): go_repository( name = "com_github_google_go_cmp", importpath = "github.com/google/go-cmp", - sum = "h1:BKbKCqvP6I+rmFHt06ZmyQtvB8xAkWdhFyr0ZUNZcxQ=", - version = "v0.5.6", + sum = "h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=", + version = "v0.5.9", ) go_repository( name = "com_github_google_go_github_v27", @@ -410,11 +428,8 @@ def go_dependencies(): name = "com_github_norunners_vert", importpath = "github.com/norunners/vert", patch_args = ["-p1"], - patches = [ - "//:patches/norunners-vert-go1.18.patch", - ], - sum = "h1:wowEKpELVGcI7utqSzrCbdbSfq4BSfY1wLeQsW6R/as=", - version = "v0.0.0-20211229045251-b4c39e2856da", + sum = "h1:tHn7K76q9eJ2rXLH/OoxHkdprM3l2A+0kdxOrKYcV7U=", + version = "v0.0.0-20221203075838-106a353d42dd", ) go_repository( @@ -671,21 +686,21 @@ def go_dependencies(): go_repository( name = "org_golang_google_genproto", importpath = "google.golang.org/genproto", - sum = "h1:UsSJe9fhWNSz6emfIGPpH5DF23t7ALo2Pf3sC+/hsdg=", - version = "v0.0.0-20190626174449-989357319d63", + sum = "h1:+kGHl1aib/qcwaRi1CbqBZ1rk19r85MNUf8HaBghugY=", + version = "v0.0.0-20200526211855-cb27e3aa2013", ) go_repository( name = "org_golang_google_grpc", importpath = "google.golang.org/grpc", - sum = "h1:j6XxA85m/6txkUCHvzlV5f+HBNl/1r5cZ2A/3IEFOO8=", - version = "v1.21.1", + sum = "h1:fPVVDxY9w++VjTZsYvXWqEf9Rqar/e+9zYfxKK+W+YU=", + version = "v1.50.0", ) go_repository( name = "org_golang_x_crypto", importpath = "golang.org/x/crypto", - sum = "h1:sK3txAijHtOK88l68nt020reeT1ZdKLIYetKl95FzVY=", - version = "v0.0.0-20220622213112-05595931fe9d", + sum = "h1:UVQgzMY87xqpKNgb+kDsll2Igd33HszWHFLmpaRMq/8=", + version = "v0.4.0", ) go_repository( name = "org_golang_x_exp", @@ -715,8 +730,8 @@ def go_dependencies(): go_repository( name = "org_golang_x_net", importpath = "golang.org/x/net", - sum = "h1:CIJ76btIcR3eFI5EgSo6k1qKw9KJexJuRLI9G7Hp5wE=", - version = "v0.0.0-20211112202133-69e39bad7dc2", + sum = "h1:VWL6FNY2bEEmsGVKabSlHu5Irp34xmMRoqb/9lF9lxk=", + version = "v0.3.0", ) go_repository( name = "org_golang_x_oauth2", @@ -728,26 +743,26 @@ def go_dependencies(): go_repository( name = "org_golang_x_sync", importpath = "golang.org/x/sync", - sum = "h1:8gQV6CLnAEikrhgkHFbMAEhagSSnXWGV915qUMm9mrU=", - version = "v0.0.0-20190423024810-112230192c58", + sum = "h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o=", + version = "v0.1.0", ) go_repository( name = "org_golang_x_sys", importpath = "golang.org/x/sys", - sum = "h1:F1jZWGFhYfh0Ci55sIpILtKKK8p3i2/krTr0H1rg74I=", - version = "v0.0.0-20210630005230-0f9fa26af87c", + sum = "h1:w8ZOecv6NaNa/zC8944JTU3vz4u6Lagfk4RPQxv92NQ=", + version = "v0.3.0", ) go_repository( name = "org_golang_x_term", importpath = "golang.org/x/term", - sum = "h1:v+OssWQX+hTHEmOBgwxdZxK4zHq3yOs8F9J7mk0PY8E=", - version = "v0.0.0-20201126162022-7de9c90e9dd1", + sum = "h1:qoo4akIqOcDME5bhc/NgxUdovd6BSS2uMsVjB56q1xI=", + version = "v0.3.0", ) go_repository( name = "org_golang_x_text", importpath = "golang.org/x/text", - sum = "h1:aRYxNxv6iGQlyVaZmk6ZgYEDa+Jg18DxebPSrd6bg1M=", - version = "v0.3.6", + sum = "h1:OLmvp0KP+FVG99Ct/qFiL/Fhk4zp4QQnZ7b2U+5piUM=", + version = "v0.5.0", ) go_repository( name = "org_golang_x_time", @@ -759,8 +774,8 @@ def go_dependencies(): go_repository( name = "org_golang_x_tools", importpath = "golang.org/x/tools", - sum = "h1:uIfBkD8gLczr4XDgYpt/qJYds2YJwZRNw4zs7wSnNhk=", - version = "v0.0.0-20190624190245-7f2218787638", + sum = "h1:7mTAgkunk3fr4GAloyyCasadO6h9zSsQZbwvcaIciV4=", + version = "v0.4.0", ) go_repository( name = "org_golang_x_xerrors", diff --git a/patches/norunners-vert-go1.18.patch b/patches/norunners-vert-go1.18.patch deleted file mode 100644 index bcaaf8b3..00000000 --- a/patches/norunners-vert-go1.18.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Nur vert/value.go vert-new/value.go ---- vert/value.go 2022-08-07 11:59:18.144818494 -0700 -+++ vert-new/value.go 2022-08-07 11:59:37.194524264 -0700 -@@ -27,7 +27,7 @@ - // ValueOf returns the Go value as a new value. - func ValueOf(i interface{}) Value { - switch i.(type) { -- case nil, js.Value, js.Wrapper: -+ case nil, js.Value: - return Value{Value: js.ValueOf(i)} - default: - v := reflect.ValueOf(i) diff --git a/patches/rules_go-wasm.patch b/patches/rules_go-wasm.patch deleted file mode 100644 index 9ecc6425..00000000 --- a/patches/rules_go-wasm.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -Naur rules_go/go/private/BUILD.sdk.bazel rules_go_new/go/private/BUILD.sdk.bazel ---- rules_go/go/private/BUILD.sdk.bazel 2022-07-19 09:30:17.000000000 -0700 -+++ rules_go_new/go/private/BUILD.sdk.bazel 2022-07-24 13:21:43.017776532 -0700 -@@ -74,6 +74,6 @@ - ) - - exports_files( -- ["lib/time/zoneinfo.zip"], -+ ["lib/time/zoneinfo.zip"] + glob(["misc/wasm/**"]), - visibility = ["//visibility:public"], - )