Skip to content

Commit

Permalink
Merge branch 'bump/primer-upstream-ref' into bump/primer-upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
HDinger committed Nov 21, 2023
2 parents f04066f + b2acc97 commit 44e6847
Show file tree
Hide file tree
Showing 195 changed files with 4,873 additions and 2,372 deletions.
5 changes: 5 additions & 0 deletions .changeset/empty-meals-lick.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@openproject/primer-view-components': minor
---

Add an ActionMenu form input
5 changes: 5 additions & 0 deletions .changeset/hip-pens-attend.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@openproject/primer-view-components': patch
---

Removes redundant `aria-disabled` from list item within `ActionMenu`.
7 changes: 7 additions & 0 deletions .changeset/new-dolphins-love.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@openproject/primer-view-components": patch
---

Adapts Blankslate to render proportionally in narrow areas

<!-- Changed components: Blankslate -->
5 changes: 5 additions & 0 deletions .changeset/orange-seahorses-fix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@openproject/primer-view-components': minor
---

Add a ClipboardCopyButton component
5 changes: 5 additions & 0 deletions .changeset/popular-timers-shop.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@openproject/primer-view-components': minor
---

Remove touch target gaps between ActionBar items
5 changes: 5 additions & 0 deletions .changeset/rude-chefs-leave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@openproject/primer-view-components": minor
---

Removing the button wrapper `Button--withTooltip` when using a tooltip with a button.
5 changes: 5 additions & 0 deletions .changeset/seven-adults-push.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@openproject/primer-view-components': patch
---

Fix an issue where ActionMenu wouldn't scroll its contents
5 changes: 5 additions & 0 deletions .changeset/shiny-buses-matter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@openproject/primer-view-components': minor
---

Allow several font sizes for Subhead headings
5 changes: 5 additions & 0 deletions .changeset/short-buses-think.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@openproject/primer-view-components': minor
---

Add Rails 7.1 support
5 changes: 5 additions & 0 deletions .changeset/soft-singers-travel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@openproject/primer-view-components': minor
---

Add missing 64px Avatar size
6 changes: 6 additions & 0 deletions .changeset/thin-ants-exercise.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@openproject/primer-view-components': minor
---

Updates Primer::Alpha::TextField to support success inline validation messages and allows validation messages to contain html fragments.
<!-- Changed components: Primer::Alpha::TextField -->
5 changes: 5 additions & 0 deletions .changeset/thirty-news-live.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@openproject/primer-view-components': patch
---

Re-introduce require 'primer/form_helper' for setups that rely on Rails eager load paths
10 changes: 5 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@ updates:
- "skip changeset"
- "actions"
schedule:
interval: "monthly"
interval: "weekly"

# NPM
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "monthly"
interval: "weekly"
labels:
- "dependencies"
- "skip changeset"
- "npm"
- package-ecosystem: "npm"
directory: "/demo"
schedule:
interval: "monthly"
interval: "weekly"
labels:
- "dependencies"
- "skip changeset"
Expand All @@ -34,15 +34,15 @@ updates:
- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "monthly"
interval: "weekly"
labels:
- "dependencies"
- "skip changeset"
- "bundler"
- package-ecosystem: "bundler"
directory: "/demo"
schedule:
interval: "monthly"
interval: "weekly"
labels:
- "dependencies"
- "skip changeset"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
languages: javascript

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
Expand Down
25 changes: 13 additions & 12 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,17 @@ jobs:
- uses: actions/checkout@v4
- name: Get specific changed files
id: changed-files
uses: tj-actions/changed-files@v39.2.3
uses: tj-actions/changed-files@v40.1.1
with:
files: |
**/*.md
files_ignore: |
.changeset/*.md
CHANGELOG.md
docs/**/*.md
.github/**/*.md
README.md
CONTRIBUTING.md
CODE_OF_CONDUCT.md
- uses: xt0rted/markdownlint-problem-matcher@v2
if: steps.changed-files.outputs.any_changed == 'true'
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
if: steps.changed-files.outputs.any_changed == 'true'
with:
node-version: 16
Expand All @@ -38,7 +39,7 @@ jobs:
- uses: actions/checkout@v4
- name: Get specific changed files
id: changed-files
uses: tj-actions/changed-files@v39.2.3
uses: tj-actions/changed-files@v40.1.1
with:
files: |
app/**/*.rb
Expand All @@ -61,7 +62,7 @@ jobs:
- uses: actions/checkout@v4
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v39.2.3
uses: tj-actions/changed-files@v40.1.1
with:
files: |
app/components/**/*.erb
Expand All @@ -81,11 +82,11 @@ jobs:
- uses: actions/checkout@v4
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v39.2.3
uses: tj-actions/changed-files@v40.1.1
with:
files: |
app/components/**/*.ts
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
if: steps.changed-files.outputs.any_changed == 'true'
with:
node-version: 16
Expand All @@ -102,12 +103,12 @@ jobs:
- uses: actions/checkout@v4
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v39.2.3
uses: tj-actions/changed-files@v40.1.1
with:
files: |
app/components/**/*.pcss
lib/postcss_mixins/*.pcss
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
if: steps.changed-files.outputs.any_changed == 'true'
with:
node-version: 16
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
with:
ruby-version: '3.2'
bundler-cache: true
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
Expand All @@ -26,7 +26,7 @@ jobs:
chmod 0600 $HOME/.gem/credentials
env:
RUBYGEMS_TOKEN: ${{ secrets.RUBYGEMS_TOKEN_SHARED }}
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
- name: Create .npmrc
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-checklist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- name: Get or Create Comment
if: success() && steps.findPr.outputs.number
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
PR_NUMBER: ${{ steps.findPr.outputs.pr }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
persist-credentials: false

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
ruby-version: '3.2'
bundler-cache: true
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
Expand Down
18 changes: 12 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
ruby-version: '3.2'
bundler-cache: true
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
Expand All @@ -51,6 +51,8 @@ jobs:
ruby_version: "2.7"
- rails_version: "7.0.3"
ruby_version: "3.0"
- rails_version: "7.1.1"
ruby_version: "3.2"
- rails_version: "main"
ruby_version: "3.1"
- rails_version: "main"
Expand All @@ -62,7 +64,7 @@ jobs:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
cache-version: ${{ matrix.rails_version }}-${{ matrix.ruby_version }}
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
Expand Down Expand Up @@ -93,6 +95,8 @@ jobs:
ruby_version: "2.7"
- rails_version: "7.0.3"
ruby_version: "3.0"
- rails_version: "7.1.1"
ruby_version: "3.2"
- rails_version: "main"
ruby_version: "3.1"
- rails_version: "main"
Expand All @@ -104,7 +108,7 @@ jobs:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
cache-version: ${{ matrix.rails_version }}-${{ matrix.ruby_version }}
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
Expand Down Expand Up @@ -135,6 +139,8 @@ jobs:
ruby_version: "2.7"
- rails_version: "7.0.3"
ruby_version: "3.0"
- rails_version: "7.1.1"
ruby_version: "3.2"
- rails_version: "main"
ruby_version: "3.1"
- rails_version: "main"
Expand Down Expand Up @@ -168,7 +174,7 @@ jobs:
with:
ruby-version: '3.2'
bundler-cache: true
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
Expand All @@ -193,7 +199,7 @@ jobs:
with:
ruby-version: '3.2'
bundler-cache: true
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
Expand Down Expand Up @@ -251,7 +257,7 @@ jobs:
ruby-version: '3.2'
bundler-cache: true
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
name: semver label
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
- uses: actions/github-script@v7
id: version-result
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
Expand All @@ -60,7 +60,7 @@ jobs:
if (match && match[0]) {
return match[0][1]
}
- uses: actions/github-script@v6
- uses: actions/github-script@v7
env:
RELEASE: ${{ steps.version-result.outputs.result }}
with:
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
inherit_gem:
rubocop-github:
- config/default_edge.yml
- config/rails_edge.yml
- config/default.yml
- config/rails.yml
require:
- rubocop-rails-accessibility
- rubocop/cop/primer
Expand Down
Loading

0 comments on commit 44e6847

Please sign in to comment.