panko_serializer 0.7.6 → 0.7.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f4d6afa062eeef46ccbd192d068e9d407003acfd98dd60b3e269caff356bb756
4
- data.tar.gz: 5049cbdef5d0e33e3731fe4a1469a047726c9b25be853d79f692b6eabe0888b5
3
+ metadata.gz: a55772372c4ae9e4d147a131c5dd59090b7dc928adc5e6830403246918fdb90b
4
+ data.tar.gz: e6ee39b058b87b81d19385d4ae03fb938e2c04859641499454ca7debe99aceb9
5
5
  SHA512:
6
- metadata.gz: ef58e0cd54374934883ac2dd17146e00ddcdc7f2858664cfb57f78e113990ebe2a766e6766c71bd217db842e96024ff51695ef34a16506ab9d50e6f01462b271
7
- data.tar.gz: d4bb8d589442812bd12a0e2d4c9d477ab3f5280c1eb9f80594eb93ca5e4153bbbbe0aa2ed517f851b247722d1d8c6240d7cb68dd625f067421a149b04988401b
6
+ metadata.gz: eac9a9cad9ca9b99146527c25a935347b51a110ab36b0bc58165c961780415068c9899ebbe15ec3eb594a112d18665c54b5d5afd77ebd2449b078faa85e37981
7
+ data.tar.gz: 87081d7cc24b5a69b3c409232abedb79daab75c263aea45b405d24ef71570df0c10f8821a741f88bb4e690d38b802bd6f43a82c0cee4a5e24d0ebba04849318a
@@ -19,7 +19,7 @@ jobs:
19
19
  - name: Use Node.js ${{ matrix.node-version }}
20
20
  uses: actions/setup-node@v1
21
21
  with:
22
- node-version: '12.x'
22
+ node-version: '16.x'
23
23
 
24
24
  - name: Install Dependencies
25
25
  working-directory: ${{ env.working_directory }}
@@ -9,13 +9,16 @@ jobs:
9
9
  strategy:
10
10
  fail-fast: false
11
11
  matrix:
12
- ruby: ['2.6', '2.7', '3.0']
13
- rails: ['6.0.0', '6.1.0']
12
+ ruby: ['2.6', '2.7', '3.0', '3.1.0']
13
+ rails: ['6.0.0', '6.1.0', '7.0.0']
14
+ exclude:
15
+ - ruby: '2.6'
16
+ rails: '7.0.0'
14
17
 
15
18
  steps:
16
19
  - uses: actions/checkout@v2
17
20
  - name: Set up Ruby ${{ matrix.ruby }}
18
- uses: actions/setup-ruby@v1
21
+ uses: ruby/setup-ruby@v1
19
22
  with:
20
23
  ruby-version: ${{ matrix.ruby }}
21
24
 
@@ -8,15 +8,15 @@ The performance of Panko is measured using microbenchmarks and load testing.
8
8
 
9
9
  ## Microbenchmarks
10
10
 
11
- The following microbenchmarks are run on MacBook Pro (15-inch, 2018), Ruby 2.6.3 with Rails 6.0.2.1
12
- demonstrating the performance of ActiveModelSerializers 0.10.10 and Panko 0.7.2
11
+ The following microbenchmarks are run on MacBook Pro (16-inch, 2021, M1 Max), Ruby 3.1.1 with Rails 7.0.2.3
12
+ demonstrating the performance of ActiveModelSerializers 0.10.13 and Panko 0.7.6
13
13
 
14
14
  | Benchmark | AMS ip/s | Panko ip/s |
15
15
  | ----------------- | -------- | ---------- |
16
- | Simple_Posts_2300 | 5.4 | 190.48 |
17
- | Simple_Posts_50 | 261.28 | 9,347.4 |
18
- | HasOne_Posts_2300 | 2.54 | 90.71 |
19
- | HasOne_Posts_50 | 124.29 | 5,421.55 |
16
+ | Simple_Posts_2300 | 11.15 | 489.71 |
17
+ | Simple_Posts_50 | 517.85 | 21,366.93 |
18
+ | HasOne_Posts_2300 | 5.68 | 229.57 |
19
+ | HasOne_Posts_50 | 268.14 | 10,126.33 |
20
20
 
21
21
  ## Real-world benchmark
22
22