-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:redwoodjs/redwood into feat/dc-rc-c…
…ors-db-auth * 'main' of github.com:redwoodjs/redwood: (366 commits) fixi(prisma): Set default cwd for runCommand task to base (#4604) Tailwind: Generate prettier-approved code (#4541) Webhook verifiers: Add Base64Sha256 version for Svix webhooks used by Clerk auth (#4598) Update dependency cypress to v9.5.1 (#4602) Update dependency typescript to v4.6.2 (#4603) Update dependency yargs-parser to v21.0.1 (#4595) Update typescript-eslint monorepo to v5.13.0 (#4601) fix dbAuth Auth template roles logic and types, run type-check on Smoke-test CI, and resolve TS errors (#4566) Update seed.ts to reflect correct input type (#4560) feat(exec): Allow listing of scripts with rw exec to improve dx (#4600) Update dependency zx to v5.2.0 (#4596) remove packageManager yarn v3 from fixture Update dependency @types/lodash to v4.14.179 (#4582) Bump url-parse in /__fixtures__/example-todo-main-with-errors (#4584) Bump url-parse from 1.5.7 to 1.5.10 in /__fixtures__/example-todo-main (#4585) Update dependency @supabase/supabase-js to v1.30.7 (#4589) Checking jest config web api (#4529) Add Codemod to Update Fatal Error Page to support Development version (#4577) Update dependency eslint-plugin-react to v7.29.2 (#4586) Update dependency systeminformation to v5.11.5 (#4587) ...
- Loading branch information
Showing
415 changed files
with
170,524 additions
and
11,682 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: 'Setup test project' | ||
description: 'Setup for CLI checks and telemetry benchmarks' | ||
outputs: | ||
test_project_path: | ||
description: 'Path to the test project' | ||
runs: | ||
using: 'node16' | ||
main: 'setup_test_project.mjs' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import os from 'node:os' | ||
import path from 'node:path' | ||
import fs from 'fs-extra' | ||
|
||
import { exec } from '@actions/exec' | ||
import * as core from '@actions/core' | ||
|
||
const test_project_path = path.join( | ||
os.tmpdir(), | ||
'test-project', | ||
// ":" is problematic with paths | ||
new Date().toISOString().split(':').join('-') | ||
) | ||
|
||
console.log({ | ||
test_project_path | ||
}) | ||
|
||
core.setOutput('test_project_path', test_project_path) | ||
|
||
await exec(`yarn build:test-project --ts --link ${test_project_path}`) | ||
|
||
try { | ||
if ( | ||
!fs.existsSync(path.join(test_project_path, 'web/tsconfig.json')) || | ||
!fs.existsSync(path.join(test_project_path, 'api/tsconfig.json')) | ||
) { | ||
throw ('Test-project is not TypeScript') | ||
} | ||
} catch(e) { | ||
console.log('********************************') | ||
console.error('\nError: Test-project is expected to be TypeScript\nExiting test-project setup.\n') | ||
console.log('********************************') | ||
process.exit(1) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
--- | ||
name: Holiday issue template | ||
about: Project Status over the Holidays | ||
name: Issue template | ||
about: v1-rc info | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
Happy Holidays!🎄🎉 | ||
The Redwood v1 release candidate has been published, and we're actively working toward a 1.0.0 GA. 🎯 | ||
|
||
Redwood project activity will be slow until Monday, January 3rd. Read the following "Redwood Holiday Updates" to learn more: | ||
- https://github.com/redwoodjs/redwood/issues/3992 | ||
Read @mojombo's post about what to expect, what this means for current priorities, and how to help: | ||
- v1-rc Announcement: https://community.redwoodjs.com/t/what-the-1-0-release-candidate-phase-means-and-when-1-0-will-drop/2604 | ||
- v1-rc Priorities that need community help: https://redwoodjs.com/good-first-issue | ||
|
||
To proceed with your Issue, just delete this message. Core Team maintainers will get back to you in 2022! 😃 | ||
New Issues and PRs are always welcome and helpful! 😀 We will respond and prioritize. If you need help faster than what we can provide here, you can reach out via the community chat or forums: | ||
- Discord Chat: https://discord.gg/jjSYEQd | ||
- Discourse Forum: https://community.redwoodjs.com/ | ||
|
||
**When you're ready to proceed, just delete this message.** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
Happy Holidays!🎄🎉 | ||
The Redwood v1 release candidate has been published, and we're actively working toward a 1.0.0 GA. 🎯 | ||
|
||
Redwood project activity will be slow until Monday, January 3rd. Read the following "Redwood Holiday Updates" to learn more: | ||
- https://github.com/redwoodjs/redwood/issues/3992 | ||
Read @mojombo's post about what to expect, what this means for current priorities, and how to help: | ||
- v1-rc Announcement: https://community.redwoodjs.com/t/what-the-1-0-release-candidate-phase-means-and-when-1-0-will-drop/2604 | ||
- v1-rc Priorities that need community help: https://redwoodjs.com/good-first-issue | ||
|
||
To proceed with your PR, just delete this message. Core Team maintainers will get back to you in 2022! 😃 | ||
New Issues and PRs are always welcome and helpful! 😀 We will respond and prioritize. If you need help faster than what we can provide here, you can reach out via the community chat or forums: | ||
- Discord Chat: https://discord.gg/jjSYEQd | ||
- Discourse Forum: https://community.redwoodjs.com/ | ||
|
||
**When you're ready to proceed, just delete this message.** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.