Skip to content

Commit a0e6fcb

Browse files
authored
Merge pull request #7307 from googleapis/nodejs-storage-migration
chore: Nodejs storage migration
2 parents ebe22f6 + 8b3c1b8 commit a0e6fcb

143 files changed

Lines changed: 55753 additions & 10 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/.OwlBot.lock.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# limitations under the License.
1414
docker:
1515
image: gcr.io/cloud-devrel-public-resources/owlbot-nodejs-mono-repo:latest
16-
digest: sha256:94d55995d53fb47e6e265a2e02bfdb778ccaaef4f3618a0ea881b0ee559e88bf
16+
digest: sha256:2e454636c6197216df757d53b0f865c1c7dcf57c92c489a612375bfca981ee81
1717
# created: 2026-02-19T18:08:41.831765454Z

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99
* @googleapis/cloud-sdk-nodejs-team
1010
/handwritten/bigquery @googleapis/bigquery-team
1111
/handwritten/cloud-profiler @googleapis/cloud-profiler-team
12+
/handwritten/storage @googleapis/gcs-team
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
paths:
6+
- 'handwritten/storage/**'
7+
pull_request:
8+
paths:
9+
- 'handwritten/storage/**'
10+
name: conformance
11+
jobs:
12+
conformance-test:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-node@v4
17+
with:
18+
node-version: 14
19+
- run: node --version
20+
- run: cd handwritten/storage && npm install
21+
- run: cd handwritten/storage && npm run conformance-test

.release-please-manifest.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
2-
"handwritten/datastore": "10.1.0",
3-
"handwritten/logging-winston": "6.0.1",
42
"handwritten/bigquery": "8.2.0",
53
"handwritten/cloud-profiler": "6.0.4",
4+
"handwritten/datastore": "10.1.0",
65
"handwritten/logging-bunyan": "5.1.1",
6+
"handwritten/logging-winston": "6.0.1",
7+
"handwritten/storage": "7.19.0",
78
"packages/gapic-node-processing": "0.1.7",
89
"packages/google-ads-admanager": "0.5.0",
910
"packages/google-ads-datamanager": "0.2.0",

handwritten/storage/.OwlBot.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Copyright 2021 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
deep-preserve-regex:
16+
- /.kokoro/samples-test.sh
17+
18+
19+
begin-after-commit-hash: 674a41e0de2869f44f45eb7b1a605852a5394bba

handwritten/storage/.eslintignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
**/node_modules
2+
**/coverage
3+
test/fixtures
4+
build/
5+
docs/
6+
protos/
7+
samples/generated/

handwritten/storage/.eslintrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "./node_modules/gts"
3+
}

handwritten/storage/.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.ts text eol=lf
2+
*.js text eol=lf
3+
protos/* linguist-generated
4+
**/api-extractor.json linguist-language=JSON-with-Comments

handwritten/storage/.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
**/*.log
2+
**/node_modules
3+
.coverage
4+
.nyc_output
5+
docs/
6+
out/
7+
build/
8+
system-test/secrets.js
9+
system-test/*key.json
10+
*.lock
11+
.DS_Store
12+
google-cloud-logging-winston-*.tgz
13+
google-cloud-logging-bunyan-*.tgz
14+
.vscode
15+
package-lock.json
16+
__pycache__

handwritten/storage/.jsdoc.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"opts": {
3+
"readme": "./README.md",
4+
"package": "./package.json",
5+
"template": "./node_modules/jsdoc-fresh",
6+
"recurse": true,
7+
"verbose": true,
8+
"destination": "./docs/"
9+
},
10+
"plugins": ["plugins/markdown", "jsdoc-region-tag"],
11+
"source": {
12+
"excludePattern": "(^|\\/|\\\\)[._]",
13+
"include": ["build/cjs/src"],
14+
"includePattern": "\\.js$"
15+
},
16+
"templates": {
17+
"copyright": "Copyright 2019 Google, LLC.",
18+
"includeDate": false,
19+
"sourceFiles": false,
20+
"systemName": "@google-cloud/storage",
21+
"theme": "lumen",
22+
"default": {
23+
"outputSourceFiles": false
24+
}
25+
},
26+
"markdown": {
27+
"idInHeadings": true
28+
}
29+
}

0 commit comments

Comments
 (0)