Skip to content

Commit 18e9178

Browse files
authored
Merge branch 'main' into fix/expect-renamed-debug-headers
2 parents 7d8d339 + 6452d45 commit 18e9178

Some content is hidden

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

46 files changed

+10750
-10998
lines changed

.eslintrc.cjs

+8
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,14 @@ module.exports = {
7272
message: 'Please use `getTracer()` from `./handlers/tracer.cjs` instead',
7373
},
7474
],
75+
patterns: [
76+
{
77+
// only */storage/storage.cjs is allowed to be imported
78+
// rest are implementation details that should not be used directly
79+
group: ['*/storage/*', '!*/storage/storage.cjs'],
80+
message: 'Import public `[...]/storage/storage.cjs` module instead.',
81+
},
82+
],
7583
},
7684
],
7785
},

.github/workflows/lint.yml

+2-8
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,8 @@ jobs:
2323
cache: 'npm'
2424
cache-dependency-path: '**/package-lock.json'
2525
- run: npm ci
26-
- name: Prettify code
27-
uses: creyD/[email protected]
28-
with:
29-
prettier_options: --write .
30-
only_changed: true
31-
commit_message: 'chore: format with prettier'
32-
clean_node_folder: false
33-
26+
- name: Check Format
27+
run: npm run format:check
3428
- name: Lint
3529
# github adds inline annotation for compact or stylish format
3630
# which is different than our default for local usage

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "5.10.0"
2+
".": "5.10.1"
33
}

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [5.10.1](https://github.com/opennextjs/opennextjs-netlify/compare/v5.10.0...v5.10.1) (2025-03-17)
4+
5+
6+
### Bug Fixes
7+
8+
* add more measures to prevent using data-cache for blob operations ([#2775](https://github.com/opennextjs/opennextjs-netlify/issues/2775)) ([58cafc1](https://github.com/opennextjs/opennextjs-netlify/commit/58cafc152ec70539122b87e46578abd75dc9daa8))
9+
310
## [5.10.0](https://github.com/opennextjs/opennextjs-netlify/compare/v5.9.4...v5.10.0) (2025-03-07)
411

512

LICENSE

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Copyright (c) 2023 Netlify <[email protected]>
2+
3+
MIT License
4+
5+
Permission is hereby granted, free of charge, to any person obtaining
6+
a copy of this software and associated documentation files (the
7+
"Software"), to deal in the Software without restriction, including
8+
without limitation the rights to use, copy, modify, merge, publish,
9+
distribute, sublicense, and/or sell copies of the Software, and to
10+
permit persons to whom the Software is furnished to do so, subject to
11+
the following conditions:
12+
13+
The above copyright notice and this permission notice shall be
14+
included in all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

e2e-report/app/globals.css

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
@font-face {
77
font-family: Mulish;
88
src: url(/MulishVar-latin.woff2) format('woff2');
9-
unicode-range: U+5, U+20, U+21, U+24, U+25, U+26, U+27, U+2B-2E, U+30-3A, U+3F, U+41-5A, U+61-7A,
10-
U+D7, U+2019, U+201C, U+201D;
9+
unicode-range:
10+
U+5, U+20, U+21, U+24, U+25, U+26, U+27, U+2B-2E, U+30-3A, U+3F, U+41-5A, U+61-7A, U+D7,
11+
U+2019, U+201C, U+201D;
1112
font-weight: 200 900;
1213
font-display: swap;
1314
}

0 commit comments

Comments
 (0)