Skip to content

Commit 33dd64d

Browse files
authored
Merge pull request #23 from matestack/v3_release
V3 Release
2 parents a3afbcd + 63d6027 commit 33dd64d

File tree

113 files changed

+1906
-8446
lines changed

Some content is hidden

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

113 files changed

+1906
-8446
lines changed

.browserslistrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/FUNDING.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# These are supported funding model platforms
2+
3+
github: [matestack]

.github/issue_template.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!-- This is a template only, remove/add sections below as appropriate (e.g. for a new feature, there might be no 'current behavior'.) -->
2+
3+
<!-- First indicate whether you want to request an ENHANCEMENT or report a BUG by using the correct Github label in the side panel* -->
4+
5+
**What is the current behavior?**
6+
7+
<!-- add current behavior here -->
8+
9+
**If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem. Your bug might get fixed faster if we can run your code and it doesn't have extra dependencies. Add a link to a sample repo and/or any relevant code below:**
10+
11+
<!-- add additional links/info here -->
12+
13+
**What is the expected behavior?**
14+
15+
<!-- add expected behavior here -->
16+
17+
**Which versions of Matestack, and which browser/OS are affected by this issue? Did this work in previous versions of Matestack?**
18+
19+
<!-- add version and browser(s) affected, where relevant -->

.github/pull_request_template.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
**Note:** If you submit a feature or bugfix PR, pick **develop** as target branch (and delete this line afterwards).
2+
3+
## Issue https://github.com/matestack/matestack-ui-core/issues/XXX: Short description here
4+
5+
### Changes
6+
7+
- [ ] Describe the changes in one or more bulletpoints
8+
9+
### Notes
10+
11+
- Let the reviewers know something special

.github/workflows/dockerpush.yml

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
name: specs
2+
3+
on: [push]
4+
5+
jobs:
6+
test_7_0_ruby_3_0:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- name: Run tests
11+
run: |
12+
docker-compose -f ./ci/docker-compose.ci.yml run --rm test_7_0_ruby_3_0
13+
- name: Upload lock files
14+
uses: actions/upload-artifact@v2
15+
with:
16+
name: lockfiles_test_7_0_ruby_3_0
17+
path: |
18+
./ci/artifacts/yarn.lock
19+
./ci/artifacts/Gemfile.lock
20+
test_6_1_ruby_3_0:
21+
runs-on: ubuntu-latest
22+
steps:
23+
- uses: actions/checkout@v2
24+
- name: Run tests
25+
run: |
26+
docker-compose -f ./ci/docker-compose.ci.yml run --rm test_6_1_ruby_3_0
27+
- name: Upload lock files
28+
uses: actions/upload-artifact@v2
29+
with:
30+
name: lockfiles_test_6_1_ruby_3_0
31+
path: |
32+
./ci/artifacts/yarn.lock
33+
./ci/artifacts/Gemfile.lock
34+
test_6_1_ruby_2_7:
35+
runs-on: ubuntu-latest
36+
steps:
37+
- uses: actions/checkout@v2
38+
- name: Run tests
39+
run: |
40+
docker-compose -f ./ci/docker-compose.ci.yml run --rm test_6_1_ruby_2_7
41+
- name: Upload lock files
42+
uses: actions/upload-artifact@v2
43+
with:
44+
name: lockfiles_test_6_1_ruby_2_7
45+
path: |
46+
./ci/artifacts/yarn.lock
47+
./ci/artifacts/Gemfile.lock
48+
test_6_0_ruby_2_6:
49+
runs-on: ubuntu-latest
50+
steps:
51+
- uses: actions/checkout@v2
52+
- name: Run tests
53+
run: |
54+
docker-compose -f ./ci/docker-compose.ci.yml run --rm test_6_0_ruby_2_6
55+
- name: Upload lock files
56+
uses: actions/upload-artifact@v2
57+
with:
58+
name: lockfiles_test_6_0_ruby_2_6
59+
path: |
60+
./ci/artifacts/yarn.lock
61+
./ci/artifacts/Gemfile.lock
62+
test_5_2_ruby_2_6:
63+
runs-on: ubuntu-latest
64+
steps:
65+
- uses: actions/checkout@v2
66+
- name: Run tests
67+
run: |
68+
docker-compose -f ./ci/docker-compose.ci.yml run --rm test_5_2_ruby_2_6
69+
- name: Upload lock files
70+
uses: actions/upload-artifact@v2
71+
with:
72+
name: lockfiles_test_5_2_ruby_2_6
73+
path: |
74+
./ci/artifacts/yarn.lock
75+
./ci/artifacts/Gemfile.lock

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v3.0.0.rc1 Release - 2022-02-15
4+
5+
- please read the [migration guide](docs/migrate-from-2.x-to-3.0.md)
6+
37
## v2.1.0 Release - 2021-06-29
48

59
### Improvements

Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:2.7.2-alpine3.12
1+
FROM ruby:3.0-alpine3.12
22

33
RUN gem install bundler:2.1.4
44

Dockerfile.release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:2.7.2-alpine3.12
1+
FROM ruby:3.0-alpine3.12
22

33
RUN gem install bundler:2.1.4
44

Dockerfile.test

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:2.7.2-alpine3.12
1+
FROM ruby:3.0-alpine3.12
22

33
RUN gem install bundler:2.1.4
44

@@ -20,14 +20,14 @@ RUN apk update && apk upgrade \
2020
&& echo @edge http://nl.alpinelinux.org/alpine/edge/community >> /etc/apk/repositories \
2121
&& echo @edge http://nl.alpinelinux.org/alpine/edge/main >> /etc/apk/repositories \
2222
&& apk add --no-cache \
23-
chromium@edge \
23+
chromium=86.0.4240.111-r0 \
2424
nss@edge \
2525
&& rm -rf /var/lib/apt/lists/* \
2626
/var/cache/apk/* \
2727
/usr/share/man \
2828
/tmp/*
2929

30-
RUN apk add chromium-chromedriver@edge
30+
RUN apk add chromium-chromedriver=86.0.4240.111-r0
3131

3232
ENV CHROME_BIN=/usr/bin/chromium-browser \
3333
CHROME_PATH=/usr/lib/chromium/

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ gemspec
2121
# Git. Remember to move these dependencies to your gemspec before releasing
2222
# your gem to rubygems.org.
2323

24-
gem 'rails', '6.1.2'
24+
gem 'rails', '7.0.1'
2525

2626
gem 'rspec-rails', '~> 4.0.2'
2727
gem 'capybara'

0 commit comments

Comments
 (0)