Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/github-actions-alpha-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
BRANCH_NAME: ${{ github.head_ref }}
GEM_HOST_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- name: 'Enable registry auth'
shell: bash
run: |
echo "//npm.powerapp.cloud/:_auth="$(echo -n 'gh-actions:${{ secrets.POWERHOME_NPM_REGISTRY_PASSWORD }}' | base64)"" >> ~/.npmrc
echo "//npm.powerapp.cloud/:always-auth = true" >> .npmrc
- uses: actions/setup-node@v4
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22.15.1
- name: Use npm 11.6.2
Expand All @@ -39,9 +39,9 @@ jobs:
with:
bundler-cache: true
- name: Python Setup
uses: actions/setup-python@v4
uses: actions/setup-python@7f4fc3e22c37d6ff65e88745f38bd3157c663f7c # v4
with:
python-version: '3.9'
python-version: '3.9.25'
- name: Set Git Config
run: |
git config --local user.name "${{ github.actor }}"
Expand Down Expand Up @@ -111,13 +111,13 @@ jobs:
env:
GEM_HOST_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- name: 'Enable registry auth'
shell: bash
run: |
echo "//npm.powerapp.cloud/:_auth="$(echo -n 'gh-actions:${{ secrets.POWERHOME_NPM_REGISTRY_PASSWORD }}' | base64)"" >> ~/.npmrc
echo "//npm.powerapp.cloud/:always-auth = true" >> .npmrc
- uses: actions/setup-node@v4
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22.15.1
- name: Use npm 11.6.2
Expand All @@ -127,9 +127,9 @@ jobs:
with:
bundler-cache: true
- name: Python Setup
uses: actions/setup-python@v4
uses: actions/setup-python@7f4fc3e22c37d6ff65e88745f38bd3157c663f7c # v4
with:
python-version: '3.9'
python-version: '3.9.25'
- name: Set Git Config
run: |
git config --local user.name "${{ github.actor }}"
Expand Down Expand Up @@ -289,7 +289,7 @@ jobs:
--notes "This is a release candidate version. Please test thoroughly before promoting to a stable release." \
--prerelease
- name: Leave PR comment
uses: actions/github-script@v7
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7
env:
PR_NUMBER: ${{ github.event.pull_request.number }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v6
- uses: release-drafter/release-drafter@b1476f6e6eb133afa41ed8589daba6dc69b4d3f5 # v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax = docker/dockerfile:1.8.1
FROM phusion/passenger-customizable:1.0.19 AS base
# syntax = docker/dockerfile:1.8.1@sha256:e87caa74dcb7d46cd820352bfea12591f3dba3ddc4285e19c7dcd13359f7cefd
FROM phusion/passenger-customizable:1.0.19@sha256:fc0e0e62e8c4ef174ddd925abfb263e8b689e6a378dfb32ce44d511f2fa33640 AS base

RUN --mount=type=cache,id=playbook-apt-cache,target=/var/cache/apt,sharing=locked \
--mount=type=cache,id=playbook-apt-lib,target=/var/lib/apt,sharing=locked \
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@typescript-eslint/parser": "4.33.0",
"babel-eslint": "10.1.0",
"eslint": "7.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-jsx-control-statements": "2.2.1",
"foreman": "3.0.1",
"husky": "6.0.0",
Expand All @@ -30,6 +30,6 @@
"*.rb": "bundle exec --gemfile=playbook-website/Gemfile rubocop --parallel"
},
"dependencies": {
"eslint-plugin-react": "^7.33.2"
"eslint-plugin-react": "7.33.2"
}
}
12 changes: 6 additions & 6 deletions playbook-website/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ gem "playbook_ui", path: "../playbook"

gem "mysql2", "0.5.6"
gem "rails", "~> 7.1.5.1"
gem "turbo-rails", "~> 1.4.0"
gem "turbo-rails", "1.4.0"
gem "puma", "~> 6.4.2"
gem "vite_rails"
# Make Compatible with Ruby 3.1.0 Upgrade
gem "psych", "< 4"
gem "bootsnap", ">= 1.1.0", require: false
gem "psych", "3.3.4"
gem "bootsnap", "1.18.4", require: false

# livenessProbe and readinessProbe. See: https://github.com/powerhome/playbook/blob/master/playbook/config/deploy/templates/deployment.yaml.erb
gem "health_check"

gem "redcarpet", "~> 3.6"
gem 'front_matter_parser', "~> 1.0.1"
gem "rouge", "~> 3.15"
gem "redcarpet", "3.6.0"
gem 'front_matter_parser', "1.0.1"
gem "rouge", "3.30.0"
gem "faker"
gem "will_paginate"
gem "sentry-ruby"
Expand Down
66 changes: 33 additions & 33 deletions playbook-website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,56 +8,56 @@
},
"dependencies": {
"@fortawesome/fontawesome-pro": "6.2.1",
"@mapbox/mapbox-gl-draw": "^1.4.1",
"@mapbox/mapbox-gl-draw": "1.4.1",
"@powerhome/playbook-icons": "1.0.2",
"@powerhome/playbook-icons-react": "1.0.2",
"@powerhome/power-fonts": "0.0.1",
"anchor-js": "^5.0.0",
"maplibre-gl": "^2.4.0",
"highcharts": "^11.4.8",
"highcharts-react-official": "^3.2.1",
"match-sorter": "^8.0.0",
"anchor-js": "5.0.0",
"maplibre-gl": "2.4.0",
"highcharts": "11.4.8",
"highcharts-react-official": "3.2.1",
"match-sorter": "8.0.0",
"playbook-ui": ">= 1",
"react-hook-form": "^7.28.1"
"react-hook-form": "7.54.2"
},
"devDependencies": {
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.24.7",
"@hotwired/turbo-rails": "^7.3.0",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@tiptap/extension-document": "^2.11.7",
"@tiptap/extension-highlight": "^2.11.7",
"@tiptap/extension-horizontal-rule": "^2.11.7",
"@tiptap/extension-link": "^2.11.7",
"@tiptap/extension-paragraph": "^2.11.7",
"@tiptap/extension-text": "^2.11.7",
"@tiptap/pm": "^2.11.7",
"@tiptap/react": "^2.11.7",
"@tiptap/starter-kit": "^2.11.7",
"@vitejs/plugin-react": "^4.3.1",
"@hotwired/turbo-rails": "7.3.0",
"@originjs/vite-plugin-commonjs": "1.0.3",
"@tiptap/extension-document": "2.11.7",
"@tiptap/extension-highlight": "2.11.7",
"@tiptap/extension-horizontal-rule": "2.11.7",
"@tiptap/extension-link": "2.11.7",
"@tiptap/extension-paragraph": "2.11.7",
"@tiptap/extension-text": "2.11.7",
"@tiptap/pm": "2.11.7",
"@tiptap/react": "2.11.7",
"@tiptap/starter-kit": "2.11.7",
"@vitejs/plugin-react": "4.3.1",
"axe-core": "4.10.2",
"babel-plugin-react-docgen": "^4.2.1",
"copy-to-clipboard": "^3.3.3",
"copy-to-clipboard": "3.3.3",
"eslint": "6.8.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.1.0",
"postcss-preset-env": "^7.0.1",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-import": "14.1.0",
"postcss-preset-env": "7.8.3",
"react": "^17.0.2",
"react-docgen": "^7.0.3",
"react-docgen-typescript": "^2.2.2",
"react-docgen": "7.0.3",
"react-docgen-typescript": "2.2.2",
"react-dom": "^17.0.2",
"react-live": "^4.1.8",
"react-live": "4.1.8",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.16.0",
"react-simple-code-editor": "^0.13.1",
"sass": "^1.77.6",
"ts-json-schema-generator": "^2.3.0",
"react-router-dom": "6.16.0",
"react-simple-code-editor": "0.13.1",
"sass": "1.77.6",
"ts-json-schema-generator": "2.3.0",
"vite": "6.3.5",
"vite-plugin-ruby": "^5.0.0",
"zxcvbn": "^4.4.2"
"vite-plugin-ruby": "5.0.0",
"zxcvbn": "4.4.2"
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "^5.0.0"
"@typescript-eslint/eslint-plugin": "5.62.0"
}
}
50 changes: 25 additions & 25 deletions playbook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,35 +34,35 @@
},
"homepage": "https://github.com/powerhome/playbook#readme",
"dependencies": {
"@floating-ui/dom": "^1.6.13",
"@popperjs/core": "^2.11.8",
"@floating-ui/dom": "1.6.13",
"@popperjs/core": "2.11.8",
"classnames": "2.5.1",
"flatpickr": "^4.6.13",
"highcharts": "^11.4.8",
"highcharts-react-official": "^3.2.1",
"intl-tel-input": "^24.7.0"
"flatpickr": "4.6.13",
"highcharts": "11.4.8",
"highcharts-react-official": "3.2.1",
"intl-tel-input": "24.7.0"
},
"devDependencies": {
"@actions/core": "1.10.0",
"@actions/github": "6.0.0",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@babel/preset-typescript": "^7.15.0",
"@floating-ui/react": "^0.26.23",
"@rollup/pluginutils": "^5.1.0",
"@floating-ui/react": "0.26.28",
"@rollup/pluginutils": "5.1.0",
"@tanstack/react-table": "8.20.5",
"@tanstack/react-virtual": "^3.12.0",
"@tanstack/react-virtual": "3.13.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "11.2.7",
"@types/flatpickr": "3.1.2",
"@types/jest": "26.0.14",
"@types/react": "17.0.54",
"@types/react-dom": "^18.0.11",
"@types/react-highlight-words": "^0.20.0",
"@types/react-highlight-words": "0.20.0",
"@types/react-modal": "3.16.1",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-react": "4.3.1",
"axe-core": "4.10.2",
"classnames": "2.5.1",
"eslint": "6.8.0",
Expand All @@ -74,37 +74,37 @@
"jest": "26.6.3",
"jest-axe": "4.1.0",
"jest-fail-on-console": "3.2.0",
"lazysizes": "^5.3.2",
"lazysizes": "5.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^14.3.5",
"react-highlight-words": "^0.20.0",
"react-modal": "^3.16.1",
"react-popper": "^2.3.0",
"react-dropzone": "14.3.5",
"react-highlight-words": "0.20.0",
"react-modal": "3.16.1",
"react-popper": "2.3.0",
"react-select": "5.8.0",
"react-trix": "0.10.1",
"react-zoom-pan-pinch": "3.6.0",
"rollup-plugin-copy": "^3.5.0",
"sass": "^1.77.8",
"terser": "^5.39.0",
"rollup-plugin-copy": "3.5.0",
"sass": "1.84.0",
"terser": "5.42.0",
"ts-jest": "26.5.6",
"typescript": "4.3.5",
"vite": "6.3.5",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-ruby": "^5.0.0"
"vite-bundle-visualizer": "1.2.1",
"vite-plugin-ruby": "5.0.0"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-is": "17.0.2",
"react-trix": "0.10.1",
"trix": "2.1.15"
},
"resolutions": {
"react": "^17.0.2",
"minimist": "1.2.7",
"selfsigned": "^1.10.8",
"set-value": "^2.0.1",
"yargs-parser": "^13.1.2"
"selfsigned": "1.10.14",
"set-value": "2.0.1",
"yargs-parser": "13.1.2"
}
}
Loading
Loading