Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: researchgate/tooling
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: @researchgate/spire-config@6.0.1
Choose a base ref
...
head repository: researchgate/tooling
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: @researchgate/spire-config@6.0.2
Choose a head ref

Commits on Aug 20, 2020

  1. Copy the full SHA
    89ad09a View commit details

Commits on Aug 31, 2020

  1. Copy the full SHA
    913a49f View commit details
  2. Copy the full SHA
    de6a6e0 View commit details

Commits on Sep 1, 2020

  1. Copy the full SHA
    e852a4b View commit details
  2. Publish

     - @researchgate/babel-preset@2.0.4
     - @researchgate/renovate-config@1.7.2
    danez committed Sep 1, 2020
    Copy the full SHA
    b4610de View commit details
  3. Copy the full SHA
    4862cf9 View commit details
  4. Publish

     - @researchgate/renovate-config@1.8.0
    danez committed Sep 1, 2020
    Copy the full SHA
    3db5865 View commit details

Commits on Sep 3, 2020

  1. Copy the full SHA
    528b9a7 View commit details

Commits on Sep 6, 2020

  1. Copy the full SHA
    ed48e1a View commit details

Commits on Sep 7, 2020

  1. Copy the full SHA
    1ce2956 View commit details
  2. Publish

     - @researchgate/babel-preset@2.0.5
    danez committed Sep 7, 2020
    Copy the full SHA
    a2540fb View commit details
  3. chore: Fix linting

    danez committed Sep 7, 2020
    Copy the full SHA
    849591e View commit details
  4. Copy the full SHA
    84fbfe9 View commit details
  5. Publish

     - @researchgate/babel-preset@2.0.6
    danez committed Sep 7, 2020
    Copy the full SHA
    5c42e5e View commit details

Commits on Sep 9, 2020

  1. Copy the full SHA
    2534616 View commit details

Commits on Sep 13, 2020

  1. Copy the full SHA
    d8dbe32 View commit details

Commits on Sep 28, 2020

  1. Copy the full SHA
    c7ab830 View commit details
  2. Publish

     - @researchgate/renovate-config@1.8.1
    danez committed Sep 28, 2020
    Copy the full SHA
    954f25d View commit details
  3. Copy the full SHA
    dba5b51 View commit details
  4. Publish

     - @researchgate/renovate-config@1.8.2
    danez committed Sep 28, 2020
    Copy the full SHA
    bb5894c View commit details

Commits on Oct 4, 2020

  1. Copy the full SHA
    d9dbb76 View commit details

Commits on Oct 5, 2020

  1. Copy the full SHA
    1c89c49 View commit details
  2. Publish

     - @researchgate/jest-preset-base@2.0.1
     - @researchgate/jest-preset-react@1.0.3
     - @researchgate/spire-config@6.0.2
    danez committed Oct 5, 2020
    Copy the full SHA
    1aa30aa View commit details
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
"devDependencies": {
"@researchgate/prettier-config": "^1.2.0",
"@researchgate/spire-config": "^5.0.7",
"spire": "3.1.0",
"spire": "3.1.2",
"spire-plugin-lerna-release": "3.0.2"
},
"spire": {
33 changes: 33 additions & 0 deletions packages/babel-preset/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,39 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.0.6](https://github.com/researchgate/tooling/compare/@researchgate/babel-preset@2.0.5...@researchgate/babel-preset@2.0.6) (2020-09-07)

### Bug Fixes

- Fix invalid broken output type
([84fbfe9](https://github.com/researchgate/tooling/commit/84fbfe97a0c991eb30911066b3dd509afeb27ffd))

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.0.5](https://github.com/researchgate/tooling/compare/@researchgate/babel-preset@2.0.4...@researchgate/babel-preset@2.0.5) (2020-09-07)

### Bug Fixes

- Remove the check for NODE_ENV
([1ce2956](https://github.com/researchgate/tooling/commit/1ce295690fda3d643bc1332698c8b9a72c66aecb))

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.0.4](https://github.com/researchgate/tooling/compare/@researchgate/babel-preset@2.0.3...@researchgate/babel-preset@2.0.4) (2020-09-01)

**Note:** Version bump only for package @researchgate/babel-preset

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.0.3](https://github.com/researchgate/tooling/compare/@researchgate/babel-preset@2.0.2...@researchgate/babel-preset@2.0.3) (2020-08-07)

**Note:** Version bump only for package @researchgate/babel-preset
12 changes: 1 addition & 11 deletions packages/babel-preset/index.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
'use strict';

module.exports = function (context, options = {}) {
const env = process.env.BABEL_ENV || process.env.NODE_ENV;
if (env !== 'development' && env !== 'test' && env !== 'production') {
throw new Error(
[
'Using `@researchgate/babel-preset` requires that you specify `NODE_ENV` or',
'`BABEL_ENV` environment variables. Valid values are "development",',
'"test", and "production". Instead, received:',
JSON.stringify(env),
].join(' ')
);
}
const env = process.env.BABEL_ENV || process.env.NODE_ENV || 'development';
const type = process.env.BABEL_OUTPUT || (env === 'test' ? 'cjs' : 'esm');
if (type !== 'esm' && type !== 'cjs') {
throw new Error(
4 changes: 2 additions & 2 deletions packages/babel-preset/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@researchgate/babel-preset",
"version": "2.0.3",
"version": "2.0.6",
"description": "Babel preset for ResearchGate's projects",
"repository": "researchgate/tooling",
"license": "MIT",
@@ -28,6 +28,6 @@
"babel-preset-react-hmre": "^1.1.1"
},
"devDependencies": {
"@babel/core": "7.11.1"
"@babel/core": "7.11.6"
}
}
12 changes: 12 additions & 0 deletions packages/jest-preset-base/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.0.1](https://github.com/researchgate/tooling/compare/@researchgate/jest-preset-base@2.0.0...@researchgate/jest-preset-base@2.0.1) (2020-10-05)

### Bug Fixes

- **jest:** Configure proper test environment
([1c89c49](https://github.com/researchgate/tooling/commit/1c89c49ecb1cbd38bdf2ae99f998903222238593))

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.0.0](https://github.com/researchgate/tooling/compare/@researchgate/jest-preset-base@1.0.0...@researchgate/jest-preset-base@2.0.0) (2020-07-28)

### Features
1 change: 1 addition & 0 deletions packages/jest-preset-base/jest-preset.js
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@ const defaults = require('spire-plugin-jest/jest-preset');

module.exports = {
...defaults,
testEnvironment: 'node',
modulePathIgnorePatterns: ['<rootDir>/.cache/'],
setupFilesAfterEnv: [require.resolve('./setup-after-env')],
};
2 changes: 1 addition & 1 deletion packages/jest-preset-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@researchgate/jest-preset-base",
"version": "2.0.0",
"version": "2.0.1",
"description": "Jest preset for ResearchGate's projects",
"author": "Daniel Tschinder <daniel.tschinder@researchgate.net>",
"repository": "researchgate/tooling",
12 changes: 12 additions & 0 deletions packages/jest-preset-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.3](https://github.com/researchgate/tooling/compare/@researchgate/jest-preset-react@1.0.2...@researchgate/jest-preset-react@1.0.3) (2020-10-05)

### Bug Fixes

- **jest:** Configure proper test environment
([1c89c49](https://github.com/researchgate/tooling/commit/1c89c49ecb1cbd38bdf2ae99f998903222238593))

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.2](https://github.com/researchgate/tooling/compare/@researchgate/jest-preset-react@1.0.1...@researchgate/jest-preset-react@1.0.2) (2020-07-28)

**Note:** Version bump only for package @researchgate/jest-preset-react
1 change: 1 addition & 0 deletions packages/jest-preset-react/jest-preset.js
Original file line number Diff line number Diff line change
@@ -4,5 +4,6 @@ const defaults = require('@researchgate/jest-preset-base');

module.exports = {
...defaults,
testEnvironment: 'jsdom',
setupFilesAfterEnv: [require.resolve('./setup-after-env')],
};
4 changes: 2 additions & 2 deletions packages/jest-preset-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@researchgate/jest-preset-react",
"version": "1.0.2",
"version": "1.0.3",
"description": "Jest preset for ResearchGate's react projects",
"author": "Sergey Bekrin <sergey@bekrin.me> (https://bekrin.me)",
"repository": "researchgate/tooling",
@@ -13,7 +13,7 @@
"access": "public"
},
"dependencies": {
"@researchgate/jest-preset-base": "^2.0.0",
"@researchgate/jest-preset-base": "^2.0.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"jest-enzyme": "^7.0.1",
45 changes: 45 additions & 0 deletions packages/renovate-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,51 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.8.2](https://github.com/researchgate/tooling/compare/@researchgate/renovate-config@1.8.1...@researchgate/renovate-config@1.8.2) (2020-09-28)

### Bug Fixes

- Disable major updates for nodejs
([dba5b51](https://github.com/researchgate/tooling/commit/dba5b5115f8b829af8aa38dc50d7f035cbfb106e))

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.8.1](https://github.com/researchgate/tooling/compare/@researchgate/renovate-config@1.8.0...@researchgate/renovate-config@1.8.1) (2020-09-28)

### Bug Fixes

- Add regex manager for docker file
([c7ab830](https://github.com/researchgate/tooling/commit/c7ab8300662bf9155b813168249fff54a5c85a8b))

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.8.0](https://github.com/researchgate/tooling/compare/@researchgate/renovate-config@1.7.2...@researchgate/renovate-config@1.8.0) (2020-09-01)

### Features

- Group and automerge Typescript types
([4862cf9](https://github.com/researchgate/tooling/commit/4862cf9dd624ef4efd0be976d15c91e63dd01717))

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.7.2](https://github.com/researchgate/tooling/compare/@researchgate/renovate-config@1.7.1...@researchgate/renovate-config@1.7.2) (2020-09-01)

**Note:** Version bump only for package @researchgate/renovate-config

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.7.1](https://github.com/researchgate/tooling/compare/@researchgate/renovate-config@1.7.0...@researchgate/renovate-config@1.7.1) (2020-07-29)

### Bug Fixes
34 changes: 32 additions & 2 deletions packages/renovate-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@researchgate/renovate-config",
"version": "1.7.1",
"version": "1.8.2",
"license": "MIT",
"publishConfig": {
"access": "public"
@@ -13,7 +13,7 @@
"timezone": "Europe/Berlin",
"lockFileMaintenance": {
"enabled": true,
"extends": "schedule:monthly",
"extends": "schedule:weekly",
"semanticCommitType": "chore",
"automerge": true
},
@@ -30,6 +30,17 @@
"engines": {
"enabled": false
},
"regexManagers": [
{
"fileMatch": [
"(^|/)Dockerfile(\\.[^/]+|)$"
],
"matchStrings": [
"datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\sENV .*?_VERSION(=|\\s)(?<currentValue>.*)\\s"
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
}
],
"packageRules": [
{
"depTypeList": [
@@ -73,15 +84,34 @@
"^@researchgate/eslint-settings"
]
},
{
"groupName": "TypeScript types packages",
"packagePatterns": [
"^@types/"
]
},
{
"packageNames": [
"node"
],
"packagePatterns": [
"^@types/"
],
"updateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"packageNames": [
"node",
"nodejs/node"
],
"updateTypes": [
"major"
],
"enabled": false
}
]
},
9 changes: 9 additions & 0 deletions packages/spire-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [6.0.2](https://github.com/researchgate/tooling/compare/@researchgate/spire-config@6.0.1...@researchgate/spire-config@6.0.2) (2020-10-05)

**Note:** Version bump only for package @researchgate/spire-config

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [6.0.1](https://github.com/researchgate/tooling/compare/@researchgate/spire-config@6.0.0...@researchgate/spire-config@6.0.1) (2020-08-17)

### Bug Fixes
4 changes: 2 additions & 2 deletions packages/spire-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@researchgate/spire-config",
"version": "6.0.1",
"version": "6.0.2",
"description": "Spire config for ResearchGate projects",
"author": "Sergey Bekrin <sergey@bekrin.me> (https://bekrin.me)",
"repository": "researchgate/tooling",
@@ -19,7 +19,7 @@
"@researchgate/eslint-config-node-typescript": "^1.1.6",
"@researchgate/eslint-config-react": "^2.0.10",
"@researchgate/eslint-config-react-typescript": "^2.0.10",
"@researchgate/jest-preset-react": "^1.0.2",
"@researchgate/jest-preset-react": "^1.0.3",
"@researchgate/prettier-config": "^1.3.2",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.5.0",
Loading