This is an automated email from the ASF dual-hosted git repository.
jonnybot pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy-geb.git
The following commit(s) were added to refs/heads/master by this push:
new 8a8aaa1c fix(webstorage): restore api in 8
8a8aaa1c is described below
commit 8a8aaa1c6c7f0e4eb4f4fd8b126cf0ccde001d74
Author: Mattias Reichel <[email protected]>
AuthorDate: Wed Sep 24 15:06:03 2025 +0200
fix(webstorage): restore api in 8
Restores and deprecates `WebStorageNotSupportedException`
to not break api in major version 8.
---
.../error/WebStorageNotSupportedException.groovy | 29 ++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git
a/module/geb-core/src/main/groovy/geb/error/WebStorageNotSupportedException.groovy
b/module/geb-core/src/main/groovy/geb/error/WebStorageNotSupportedException.groovy
new file mode 100644
index 00000000..5fcdcabb
--- /dev/null
+++
b/module/geb-core/src/main/groovy/geb/error/WebStorageNotSupportedException.groovy
@@ -0,0 +1,29 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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 geb.error
+
+/**
+ * @deprecated As of 8.0.1, this class is no longer used.
+ */
+@Deprecated(since = '8.0.1', forRemoval = true)
+class WebStorageNotSupportedException extends GebException {
+ WebStorageNotSupportedException() {
+ super('Web storage is not supported by the driver')
+ }
+}